mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
9fc2e79611
* feat(plugin): implement scope package support plugins * feat(plugin): improve plugin loader * chore: fix build * chore: cover config path case * chore: async ui thene plugin * chore: store async plugin * chore: refactor plugin loader auth * feat: filter refactoring * chore: remove old plugin loader * chore: add changeset * chore: add docs * chore: refactor relative plugin loader * Update user.jwt.spec.ts * Update user.jwt.spec.ts
8 lines
126 B
JavaScript
8 lines
126 B
JavaScript
function ValidVerdaccioPlugin() {
|
|
return {
|
|
authenticate: function () {},
|
|
};
|
|
}
|
|
|
|
module.exports = ValidVerdaccioPlugin;
|