@verdaccio/logger 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 +13 -7
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @verdaccio/logger
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @verdaccio/logger-commons@7.0.0-next.5
|
|
8
|
+
|
|
3
9
|
## 7.0.0-next.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -135,12 +141,12 @@
|
|
|
135
141
|
- 8f43bf17d: feat: node api new structure based on promise
|
|
136
142
|
|
|
137
143
|
```js
|
|
138
|
-
import { runServer } from
|
|
144
|
+
import { runServer } from "@verdaccio/node-api";
|
|
139
145
|
// or
|
|
140
|
-
import { runServer } from
|
|
146
|
+
import { runServer } from "verdaccio";
|
|
141
147
|
|
|
142
148
|
const app = await runServer(); // default configuration
|
|
143
|
-
const app = await runServer(
|
|
149
|
+
const app = await runServer("./config/config.yaml");
|
|
144
150
|
const app = await runServer({ configuration });
|
|
145
151
|
app.listen(4000, (event) => {
|
|
146
152
|
// do something
|
|
@@ -552,14 +558,14 @@
|
|
|
552
558
|
- 5c5057fc: feat: node api new structure based on promise
|
|
553
559
|
|
|
554
560
|
```js
|
|
555
|
-
import { runServer } from
|
|
561
|
+
import { runServer } from "@verdaccio/node-api";
|
|
556
562
|
// or
|
|
557
|
-
import { runServer } from
|
|
563
|
+
import { runServer } from "verdaccio";
|
|
558
564
|
|
|
559
565
|
const app = await runServer(); // default configuration
|
|
560
|
-
const app = await runServer(
|
|
566
|
+
const app = await runServer("./config/config.yaml");
|
|
561
567
|
const app = await runServer({ configuration });
|
|
562
|
-
app.listen(4000, event => {
|
|
568
|
+
app.listen(4000, (event) => {
|
|
563
569
|
// do something
|
|
564
570
|
});
|
|
565
571
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/logger",
|
|
3
|
-
"version": "7.0.0-next.
|
|
3
|
+
"version": "7.0.0-next.5",
|
|
4
4
|
"description": "logger",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"node": ">=18"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@verdaccio/logger-commons": "7.0.0-next.
|
|
33
|
-
"pino": "8.
|
|
32
|
+
"@verdaccio/logger-commons": "7.0.0-next.5",
|
|
33
|
+
"pino": "8.17.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@verdaccio/types": "12.0.0-next.
|
|
36
|
+
"@verdaccio/types": "12.0.0-next.2"
|
|
37
37
|
},
|
|
38
38
|
"funding": {
|
|
39
39
|
"type": "opencollective",
|