@verdaccio/node-api 6.0.0-6-next.62 → 6.0.0-6-next.63
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 +12 -0
- package/package.json +7 -7
- package/test/run-server.spec.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @verdaccio/node-api
|
|
2
2
|
|
|
3
|
+
## 6.0.0-6-next.63
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ddb6a223]
|
|
8
|
+
- Updated dependencies [dc571aab]
|
|
9
|
+
- @verdaccio/config@6.0.0-6-next.63
|
|
10
|
+
- @verdaccio/core@6.0.0-6-next.63
|
|
11
|
+
- @verdaccio/server@6.0.0-6-next.52
|
|
12
|
+
- @verdaccio/server-fastify@6.0.0-6-next.44
|
|
13
|
+
- @verdaccio/logger@6.0.0-6-next.31
|
|
14
|
+
|
|
3
15
|
## 6.0.0-6-next.62
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/node-api",
|
|
3
|
-
"version": "6.0.0-6-next.
|
|
3
|
+
"version": "6.0.0-6-next.63",
|
|
4
4
|
"description": "node API",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
},
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@verdaccio/core": "6.0.0-6-next.
|
|
34
|
-
"@verdaccio/config": "6.0.0-6-next.
|
|
35
|
-
"@verdaccio/logger": "6.0.0-6-next.
|
|
36
|
-
"@verdaccio/server": "6.0.0-6-next.
|
|
37
|
-
"@verdaccio/server-fastify": "6.0.0-6-next.
|
|
33
|
+
"@verdaccio/core": "6.0.0-6-next.63",
|
|
34
|
+
"@verdaccio/config": "6.0.0-6-next.63",
|
|
35
|
+
"@verdaccio/logger": "6.0.0-6-next.31",
|
|
36
|
+
"@verdaccio/server": "6.0.0-6-next.52",
|
|
37
|
+
"@verdaccio/server-fastify": "6.0.0-6-next.44",
|
|
38
38
|
"core-js": "3.28.0",
|
|
39
39
|
"debug": "4.3.4",
|
|
40
40
|
"lodash": "4.17.21"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "16.18.10",
|
|
44
|
-
"@verdaccio/types": "11.0.0-6-next.
|
|
44
|
+
"@verdaccio/types": "11.0.0-6-next.22",
|
|
45
45
|
"jest-mock-process": "1.5.1",
|
|
46
46
|
"selfsigned": "1.10.14",
|
|
47
47
|
"supertest": "6.3.3"
|
package/test/run-server.spec.ts
CHANGED
|
@@ -11,7 +11,7 @@ describe('startServer via API', () => {
|
|
|
11
11
|
|
|
12
12
|
test('should fail on start with empty configuration', async () => {
|
|
13
13
|
// @ts-expect-error
|
|
14
|
-
await expect(runServer({})).rejects.toThrow('
|
|
14
|
+
await expect(runServer({})).rejects.toThrow('configPath property is required');
|
|
15
15
|
});
|
|
16
16
|
|
|
17
17
|
test('should fail on start with null as entry', async () => {
|