@verdaccio/proxy 6.0.0-6-next.26 → 6.0.0-6-next.28

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @verdaccio/proxy
2
2
 
3
+ ## 6.0.0-6-next.28
4
+
5
+ ### Patch Changes
6
+
7
+ - @verdaccio/core@6.0.0-6-next.50
8
+ - @verdaccio/config@6.0.0-6-next.50
9
+ - @verdaccio/logger@6.0.0-6-next.18
10
+ - @verdaccio/local-storage@11.0.0-6-next.20
11
+ - @verdaccio/utils@6.0.0-6-next.18
12
+
13
+ ## 6.0.0-6-next.27
14
+
15
+ ### Patch Changes
16
+
17
+ - @verdaccio/local-storage@11.0.0-6-next.19
18
+ - @verdaccio/core@6.0.0-6-next.49
19
+ - @verdaccio/config@6.0.0-6-next.49
20
+ - @verdaccio/logger@6.0.0-6-next.17
21
+ - @verdaccio/utils@6.0.0-6-next.17
22
+
3
23
  ## 6.0.0-6-next.26
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/proxy",
3
- "version": "6.0.0-6-next.26",
3
+ "version": "6.0.0-6-next.28",
4
4
  "description": "verdaccio proxy fetcher",
5
5
  "main": "./build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -30,25 +30,26 @@
30
30
  "npm": ">=6"
31
31
  },
32
32
  "dependencies": {
33
- "@verdaccio/config": "6.0.0-6-next.48",
34
- "@verdaccio/core": "6.0.0-6-next.48",
35
- "@verdaccio/local-storage": "11.0.0-6-next.18",
36
- "@verdaccio/logger": "6.0.0-6-next.16",
37
- "@verdaccio/utils": "6.0.0-6-next.16",
33
+ "@verdaccio/config": "6.0.0-6-next.50",
34
+ "@verdaccio/core": "6.0.0-6-next.50",
35
+ "@verdaccio/local-storage": "11.0.0-6-next.20",
36
+ "@verdaccio/logger": "6.0.0-6-next.18",
37
+ "@verdaccio/utils": "6.0.0-6-next.18",
38
38
  "JSONStream": "1.3.5",
39
39
  "debug": "4.3.4",
40
40
  "lodash": "4.17.21",
41
41
  "got": "11.8.5",
42
- "hpagent": "1.0.0",
42
+ "hpagent": "1.1.0",
43
43
  "undici": "4.16.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/node": "16.11.60",
46
+ "@types/node": "16.11.65",
47
+ "p-cancelable": "2.1.1",
47
48
  "@verdaccio/types": "11.0.0-6-next.17",
48
49
  "get-stream": "^6.0.1",
49
50
  "nock": "13.2.9",
50
51
  "node-mocks-http": "1.11.0",
51
- "semver": "7.3.7"
52
+ "semver": "7.3.8"
52
53
  },
53
54
  "funding": {
54
55
  "type": "opencollective",
package/tsconfig.json CHANGED
@@ -2,17 +2,14 @@
2
2
  "extends": "../../tsconfig.reference.json",
3
3
  "compilerOptions": {
4
4
  "rootDir": "./src",
5
- "outDir": "./build"
5
+ "outDir": "./build",
6
+ "noImplicitAny": false
6
7
  },
7
- "include": ["src/**/*", "types/*.d.ts"],
8
- "exclude": ["src/**/*.test.ts"],
8
+ "include": ["src/**/*.ts", "types/*.d.ts"],
9
9
  "references": [
10
10
  {
11
11
  "path": "../config"
12
12
  },
13
- {
14
- "path": "../core/streams"
15
- },
16
13
  {
17
14
  "path": "../core/core"
18
15
  },
@@ -0,0 +1,10 @@
1
+ declare module 'jest-matcher-utils';
2
+ declare module 'pretty-format' {
3
+ export type Plugin = any;
4
+ export type CompareKeys = any;
5
+ }
6
+ declare module '@jest/schemas' {
7
+ export type SnapshotFormat = any;
8
+ }
9
+
10
+ declare module '@szmarczak/http-timer';