@verdaccio/cli 7.0.0-next.4 → 7.0.0-next.5
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 +17 -7
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @verdaccio/cli
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f047cc8]
|
|
8
|
+
- @verdaccio/core@7.0.0-next.5
|
|
9
|
+
- @verdaccio/config@7.0.0-next.5
|
|
10
|
+
- @verdaccio/node-api@7.0.0-next.5
|
|
11
|
+
- @verdaccio/logger@7.0.0-next.5
|
|
12
|
+
|
|
3
13
|
## 7.0.0-next.4
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -178,12 +188,12 @@
|
|
|
178
188
|
- 8f43bf17d: feat: node api new structure based on promise
|
|
179
189
|
|
|
180
190
|
```js
|
|
181
|
-
import { runServer } from
|
|
191
|
+
import { runServer } from "@verdaccio/node-api";
|
|
182
192
|
// or
|
|
183
|
-
import { runServer } from
|
|
193
|
+
import { runServer } from "verdaccio";
|
|
184
194
|
|
|
185
195
|
const app = await runServer(); // default configuration
|
|
186
|
-
const app = await runServer(
|
|
196
|
+
const app = await runServer("./config/config.yaml");
|
|
187
197
|
const app = await runServer({ configuration });
|
|
188
198
|
app.listen(4000, (event) => {
|
|
189
199
|
// do something
|
|
@@ -1029,14 +1039,14 @@
|
|
|
1029
1039
|
- 5c5057fc: feat: node api new structure based on promise
|
|
1030
1040
|
|
|
1031
1041
|
```js
|
|
1032
|
-
import { runServer } from
|
|
1042
|
+
import { runServer } from "@verdaccio/node-api";
|
|
1033
1043
|
// or
|
|
1034
|
-
import { runServer } from
|
|
1044
|
+
import { runServer } from "verdaccio";
|
|
1035
1045
|
|
|
1036
1046
|
const app = await runServer(); // default configuration
|
|
1037
|
-
const app = await runServer(
|
|
1047
|
+
const app = await runServer("./config/config.yaml");
|
|
1038
1048
|
const app = await runServer({ configuration });
|
|
1039
|
-
app.listen(4000, event => {
|
|
1049
|
+
app.listen(4000, (event) => {
|
|
1040
1050
|
// do something
|
|
1041
1051
|
});
|
|
1042
1052
|
```
|
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.5",
|
|
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.5",
|
|
37
|
+
"@verdaccio/config": "7.0.0-next.5",
|
|
38
|
+
"@verdaccio/logger": "7.0.0-next.5",
|
|
39
|
+
"@verdaccio/node-api": "7.0.0-next.5",
|
|
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",
|