@verdaccio/cli 7.0.0-next.4 → 7.0.0-next.6
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 +27 -7
- package/LICENSE +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @verdaccio/cli
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [4d96324]
|
|
8
|
+
- @verdaccio/config@7.0.0-next.6
|
|
9
|
+
- @verdaccio/node-api@7.0.0-next.6
|
|
10
|
+
- @verdaccio/core@7.0.0-next.6
|
|
11
|
+
- @verdaccio/logger@7.0.0-next.6
|
|
12
|
+
|
|
13
|
+
## 7.0.0-next.5
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [f047cc8]
|
|
18
|
+
- @verdaccio/core@7.0.0-next.5
|
|
19
|
+
- @verdaccio/config@7.0.0-next.5
|
|
20
|
+
- @verdaccio/node-api@7.0.0-next.5
|
|
21
|
+
- @verdaccio/logger@7.0.0-next.5
|
|
22
|
+
|
|
3
23
|
## 7.0.0-next.4
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -178,12 +198,12 @@
|
|
|
178
198
|
- 8f43bf17d: feat: node api new structure based on promise
|
|
179
199
|
|
|
180
200
|
```js
|
|
181
|
-
import { runServer } from
|
|
201
|
+
import { runServer } from "@verdaccio/node-api";
|
|
182
202
|
// or
|
|
183
|
-
import { runServer } from
|
|
203
|
+
import { runServer } from "verdaccio";
|
|
184
204
|
|
|
185
205
|
const app = await runServer(); // default configuration
|
|
186
|
-
const app = await runServer(
|
|
206
|
+
const app = await runServer("./config/config.yaml");
|
|
187
207
|
const app = await runServer({ configuration });
|
|
188
208
|
app.listen(4000, (event) => {
|
|
189
209
|
// do something
|
|
@@ -1029,14 +1049,14 @@
|
|
|
1029
1049
|
- 5c5057fc: feat: node api new structure based on promise
|
|
1030
1050
|
|
|
1031
1051
|
```js
|
|
1032
|
-
import { runServer } from
|
|
1052
|
+
import { runServer } from "@verdaccio/node-api";
|
|
1033
1053
|
// or
|
|
1034
|
-
import { runServer } from
|
|
1054
|
+
import { runServer } from "verdaccio";
|
|
1035
1055
|
|
|
1036
1056
|
const app = await runServer(); // default configuration
|
|
1037
|
-
const app = await runServer(
|
|
1057
|
+
const app = await runServer("./config/config.yaml");
|
|
1038
1058
|
const app = await runServer({ configuration });
|
|
1039
|
-
app.listen(4000, event => {
|
|
1059
|
+
app.listen(4000, (event) => {
|
|
1040
1060
|
// do something
|
|
1041
1061
|
});
|
|
1042
1062
|
```
|
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/cli",
|
|
3
|
-
"version": "7.0.0-next.
|
|
3
|
+
"version": "7.0.0-next.6",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Juan Picado",
|
|
6
6
|
"email": "juanpicado19@gmail.com"
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"main": "./build/index.js",
|
|
34
34
|
"types": "build/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@verdaccio/core": "7.0.0-next.
|
|
37
|
-
"@verdaccio/config": "7.0.0-next.
|
|
38
|
-
"@verdaccio/logger": "7.0.0-next.
|
|
39
|
-
"@verdaccio/node-api": "7.0.0-next.
|
|
36
|
+
"@verdaccio/core": "7.0.0-next.6",
|
|
37
|
+
"@verdaccio/config": "7.0.0-next.6",
|
|
38
|
+
"@verdaccio/logger": "7.0.0-next.6",
|
|
39
|
+
"@verdaccio/node-api": "7.0.0-next.6",
|
|
40
40
|
"clipanion": "3.2.1",
|
|
41
|
-
"envinfo": "7.
|
|
41
|
+
"envinfo": "7.11.0",
|
|
42
42
|
"kleur": "4.1.5",
|
|
43
43
|
"semver": "7.5.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"ts-node": "10.9.
|
|
46
|
+
"ts-node": "10.9.2"
|
|
47
47
|
},
|
|
48
48
|
"funding": {
|
|
49
49
|
"type": "opencollective",
|