mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-04-01 02:42:23 -05:00
fix: add legacy getMatchedPackagesSpec to config (#5173)
* fix: add legacy getMatchedPackagesSpec to config Some old plugins depends of this function * Update storage.ts * Update src/lib/config.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
cbd69af5d0
commit
abea8ce095
3 changed files with 7 additions and 8 deletions
|
@ -64,12 +64,6 @@ const defineAPI = async function (config: IConfig, storage: Storage): Promise<ex
|
|||
hookDebug(app, config.configPath);
|
||||
}
|
||||
|
||||
// register middleware plugins
|
||||
const plugin_params = {
|
||||
config: config,
|
||||
logger: logger,
|
||||
};
|
||||
|
||||
const plugins: pluginUtils.ExpressMiddleware<IConfig, {}, Auth>[] = await asyncLoadPlugin(
|
||||
config.middlewares,
|
||||
{
|
||||
|
@ -79,6 +73,7 @@ const defineAPI = async function (config: IConfig, storage: Storage): Promise<ex
|
|||
function (plugin) {
|
||||
return typeof plugin.register_middlewares !== 'undefined';
|
||||
},
|
||||
true,
|
||||
config?.serverSettings?.pluginPrefix ?? 'verdaccio',
|
||||
PLUGIN_CATEGORY.MIDDLEWARE
|
||||
);
|
||||
|
@ -116,6 +111,7 @@ const defineAPI = async function (config: IConfig, storage: Storage): Promise<ex
|
|||
export default (async function (configHash: any) {
|
||||
setup(configHash.logs);
|
||||
const config: IConfig = new AppConfig(_.cloneDeep(configHash));
|
||||
|
||||
const storage = new Storage(config);
|
||||
// waits until init calls have been initialized
|
||||
await storage.init(config, []);
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
import _ from 'lodash';
|
||||
|
||||
import { Config as ConfigCore } from '@verdaccio/config';
|
||||
import { getMatchedPackagesSpec } from '@verdaccio/utils';
|
||||
|
||||
class Config extends ConfigCore {
|
||||
public constructor(config: any) {
|
||||
config.configPath = config.self_path;
|
||||
super(config, { forceMigrateToSecureLegacySignature: false });
|
||||
// Temporary solution for plugins that depends on legacy configuration files
|
||||
// @ts-ignore
|
||||
this.getMatchedPackagesSpec = getMatchedPackagesSpec;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -81,6 +81,7 @@ class Storage {
|
|||
(plugin: pluginUtils.ManifestFilter<Config>) => {
|
||||
return typeof plugin.filter_metadata !== 'undefined';
|
||||
},
|
||||
true,
|
||||
this.config?.serverSettings?.pluginPrefix,
|
||||
PLUGIN_CATEGORY.FILTER
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue