@verdaccio/types 14.0.0-next-9.2 → 14.0.0-next-9.3
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/README.md +10 -10
- package/package.json +1 -1
- package/src/configuration.ts +1 -1
- package/src/plugins/index.ts +1 -1
- package/src/plugins/storage.ts +2 -2
- package/src/types.ts +5 -5
package/README.md
CHANGED
|
@@ -29,16 +29,16 @@ If you want to report a security vulnerability, please follow the steps which we
|
|
|
29
29
|
|
|
30
30
|
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/verdaccio/contribute)]
|
|
31
31
|
|
|
32
|
-
[](https://opencollective.com/verdaccio/sponsor/0/website)
|
|
33
|
+
[](https://opencollective.com/verdaccio/sponsor/1/website)
|
|
34
|
+
[](https://opencollective.com/verdaccio/sponsor/2/website)
|
|
35
|
+
[](https://opencollective.com/verdaccio/sponsor/3/website)
|
|
36
|
+
[](https://opencollective.com/verdaccio/sponsor/4/website)
|
|
37
|
+
[](https://opencollective.com/verdaccio/sponsor/5/website)
|
|
38
|
+
[](https://opencollective.com/verdaccio/sponsor/6/website)
|
|
39
|
+
[](https://opencollective.com/verdaccio/sponsor/7/website)
|
|
40
|
+
[](https://opencollective.com/verdaccio/sponsor/8/website)
|
|
41
|
+
[](https://opencollective.com/verdaccio/sponsor/9/website)
|
|
42
42
|
|
|
43
43
|
## Open Collective Backers
|
|
44
44
|
|
package/package.json
CHANGED
package/src/configuration.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { Algorithm as Algorithms, SignOptions, VerifyOptions } from 'jsonwe
|
|
|
2
2
|
import type { AgentOptions as HttpAgentOptions } from 'node:http';
|
|
3
3
|
import type { AgentOptions as HttpsAgentOptions } from 'node:https';
|
|
4
4
|
|
|
5
|
-
import type { PackageAccess, PackageList } from '
|
|
5
|
+
import type { PackageAccess, PackageList } from './manifest';
|
|
6
6
|
|
|
7
7
|
export type TypeToken = 'Bearer' | 'Basic';
|
|
8
8
|
|
package/src/plugins/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '
|
|
1
|
+
export * from './storage';
|
package/src/plugins/storage.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Callback, CallbackAction } from '
|
|
2
|
-
import type { Manifest, Token } from '
|
|
1
|
+
import type { Callback, CallbackAction } from '../commons';
|
|
2
|
+
import type { Manifest, Token } from '../manifest';
|
|
3
3
|
|
|
4
4
|
export type StorageList = string[];
|
|
5
5
|
|
package/src/types.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from '
|
|
3
|
-
export * from '
|
|
4
|
-
export * from '
|
|
5
|
-
export * from '
|
|
1
|
+
export * from './plugins';
|
|
2
|
+
export * from './manifest';
|
|
3
|
+
export * from './search';
|
|
4
|
+
export * from './commons';
|
|
5
|
+
export * from './configuration';
|