verdaccio-tarball-local-storage 29.0.0 → 30.1.0
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/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Config, Logger, Token, IPluginStorage, IPackageStorage } from '@verdaccio/types';
|
|
2
|
-
export default class LocalStorage implements IPluginStorage<
|
|
2
|
+
export default class LocalStorage implements IPluginStorage<unknown> {
|
|
3
3
|
config: Config;
|
|
4
4
|
logger: Logger;
|
|
5
5
|
constructor(config: Config, logger: Logger);
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAO1F,MAAM,CAAC,OAAO,OAAO,YAAa,YAAW,cAAc,CAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAO1F,MAAM,CAAC,OAAO,OAAO,YAAa,YAAW,cAAc,CAAC,OAAO,CAAC;IAChE,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;gBAEH,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM;IAK1C,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC;IAI5B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC;IAIzB,GAAG,IAAI,IAAI;IAIX,MAAM,IAAI,IAAI;IAId,MAAM,IAAI,IAAI;IAId,GAAG,IAAI,IAAI;IAIX,iBAAiB,CAAC,WAAW,EAAE,MAAM,GAAG,eAAe;IAuBvD,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC;IAIzB,WAAW,IAAI,OAAO,CAAC,GAAG,CAAC;IAI3B,UAAU,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;IAI9B;;;;;OAKG;IACH,OAAO,CAAC,mBAAmB;CAY9B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verdaccio-tarball-local-storage",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "30.1.0",
|
|
4
4
|
"description": "Cropped and fixed version of the @verdaccio/local-storage plugin (https://github.com/verdaccio/monorepo/tree/9.x/plugins/local-storage)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"cli": {
|
|
32
32
|
"webpack": false
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "ebfab3b30337bab2d2c7b1bf6a1caeedc262c884"
|
|
35
35
|
}
|
package/src/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { PackageStorage } from './package-storage';
|
|
|
9
9
|
const debug = buildDebug('verdaccio:plugin:local-storage');
|
|
10
10
|
|
|
11
11
|
// eslint-disable-next-line import/no-default-export
|
|
12
|
-
export default class LocalStorage implements IPluginStorage<
|
|
12
|
+
export default class LocalStorage implements IPluginStorage<unknown> {
|
|
13
13
|
config: Config;
|
|
14
14
|
logger: Logger;
|
|
15
15
|
|