@verdaccio/types 14.0.0-next-9.5 → 14.0.0-next-9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/configuration.ts +1 -2
package/package.json
CHANGED
package/src/configuration.ts
CHANGED
|
@@ -138,6 +138,7 @@ export type CommonWebConf = {
|
|
|
138
138
|
hideDeprecatedVersions?: boolean;
|
|
139
139
|
primaryColor?: string;
|
|
140
140
|
showRaw?: boolean;
|
|
141
|
+
assetFolder?: string;
|
|
141
142
|
};
|
|
142
143
|
|
|
143
144
|
/**
|
|
@@ -334,8 +335,6 @@ export interface Config extends Omit<ConfigYaml, 'packages' | 'security' | 'conf
|
|
|
334
335
|
secret: string;
|
|
335
336
|
// save the configuration file path, it's fails without thi configPath
|
|
336
337
|
configPath: string;
|
|
337
|
-
// @deprecated use configPath
|
|
338
|
-
self_path?: string;
|
|
339
338
|
// packages from yaml file looks different from packages inside the config file
|
|
340
339
|
packages: PackageList;
|
|
341
340
|
// security object defaults is added by the config file but optional in the yaml file
|