mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
93468211d6
* chore: update eslint * chore: update rules and style * chore: aling formatting * chore: update ci rules * chore: aling formatting * chore: aling formatting
20 lines
519 B
TypeScript
20 lines
519 B
TypeScript
import path from 'path';
|
|
import config from '../../../partials/config';
|
|
|
|
export const authProfileConf = config({
|
|
auth: {
|
|
[`${path.join(__dirname, '../../../partials/plugin/authenticate.success')}`]: {}
|
|
}
|
|
});
|
|
|
|
export const authPluginFailureConf = config({
|
|
auth: {
|
|
[`${path.join(__dirname, '../../../partials/plugin/authenticate.fail')}`]: {}
|
|
}
|
|
});
|
|
|
|
export const authPluginPassThrougConf = config({
|
|
auth: {
|
|
[`${path.join(__dirname, '../../../partials/plugin/authenticate.passthroug')}`]: {}
|
|
}
|
|
});
|