@verdaccio/logger 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 +19 -7
- package/LICENSE +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @verdaccio/logger
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @verdaccio/logger-commons@7.0.0-next.6
|
|
8
|
+
|
|
9
|
+
## 7.0.0-next.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @verdaccio/logger-commons@7.0.0-next.5
|
|
14
|
+
|
|
3
15
|
## 7.0.0-next.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -135,12 +147,12 @@
|
|
|
135
147
|
- 8f43bf17d: feat: node api new structure based on promise
|
|
136
148
|
|
|
137
149
|
```js
|
|
138
|
-
import { runServer } from
|
|
150
|
+
import { runServer } from "@verdaccio/node-api";
|
|
139
151
|
// or
|
|
140
|
-
import { runServer } from
|
|
152
|
+
import { runServer } from "verdaccio";
|
|
141
153
|
|
|
142
154
|
const app = await runServer(); // default configuration
|
|
143
|
-
const app = await runServer(
|
|
155
|
+
const app = await runServer("./config/config.yaml");
|
|
144
156
|
const app = await runServer({ configuration });
|
|
145
157
|
app.listen(4000, (event) => {
|
|
146
158
|
// do something
|
|
@@ -552,14 +564,14 @@
|
|
|
552
564
|
- 5c5057fc: feat: node api new structure based on promise
|
|
553
565
|
|
|
554
566
|
```js
|
|
555
|
-
import { runServer } from
|
|
567
|
+
import { runServer } from "@verdaccio/node-api";
|
|
556
568
|
// or
|
|
557
|
-
import { runServer } from
|
|
569
|
+
import { runServer } from "verdaccio";
|
|
558
570
|
|
|
559
571
|
const app = await runServer(); // default configuration
|
|
560
|
-
const app = await runServer(
|
|
572
|
+
const app = await runServer("./config/config.yaml");
|
|
561
573
|
const app = await runServer({ configuration });
|
|
562
|
-
app.listen(4000, event => {
|
|
574
|
+
app.listen(4000, (event) => {
|
|
563
575
|
// do something
|
|
564
576
|
});
|
|
565
577
|
```
|
package/LICENSE
CHANGED
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.6",
|
|
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.6",
|
|
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",
|