@verdaccio/node-api 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +29 -7
  2. package/LICENSE +1 -1
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @verdaccio/node-api
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/server@7.0.0-next.6
10
+ - @verdaccio/server-fastify@7.0.0-next.6
11
+ - @verdaccio/core@7.0.0-next.6
12
+ - @verdaccio/logger@7.0.0-next.6
13
+
14
+ ## 7.0.0-next.5
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [f047cc8]
19
+ - @verdaccio/server@7.0.0-next.5
20
+ - @verdaccio/core@7.0.0-next.5
21
+ - @verdaccio/config@7.0.0-next.5
22
+ - @verdaccio/logger@7.0.0-next.5
23
+ - @verdaccio/server-fastify@7.0.0-next.5
24
+
3
25
  ## 7.0.0-next.4
4
26
 
5
27
  ### Patch Changes
@@ -204,12 +226,12 @@
204
226
  - 8f43bf17d: feat: node api new structure based on promise
205
227
 
206
228
  ```js
207
- import { runServer } from '@verdaccio/node-api';
229
+ import { runServer } from "@verdaccio/node-api";
208
230
  // or
209
- import { runServer } from 'verdaccio';
231
+ import { runServer } from "verdaccio";
210
232
 
211
233
  const app = await runServer(); // default configuration
212
- const app = await runServer('./config/config.yaml');
234
+ const app = await runServer("./config/config.yaml");
213
235
  const app = await runServer({ configuration });
214
236
  app.listen(4000, (event) => {
215
237
  // do something
@@ -1087,14 +1109,14 @@
1087
1109
  - 5c5057fc: feat: node api new structure based on promise
1088
1110
 
1089
1111
  ```js
1090
- import { runServer } from '@verdaccio/node-api';
1112
+ import { runServer } from "@verdaccio/node-api";
1091
1113
  // or
1092
- import { runServer } from 'verdaccio';
1114
+ import { runServer } from "verdaccio";
1093
1115
 
1094
1116
  const app = await runServer(); // default configuration
1095
- const app = await runServer('./config/config.yaml');
1117
+ const app = await runServer("./config/config.yaml");
1096
1118
  const app = await runServer({ configuration });
1097
- app.listen(4000, event => {
1119
+ app.listen(4000, (event) => {
1098
1120
  // do something
1099
1121
  });
1100
1122
  ```
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Verdaccio contributors
3
+ Copyright (c) 2024 Verdaccio contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/node-api",
3
- "version": "7.0.0-next.4",
3
+ "version": "7.0.0-next.6",
4
4
  "description": "node API",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -29,20 +29,20 @@
29
29
  },
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@verdaccio/core": "7.0.0-next.4",
33
- "@verdaccio/config": "7.0.0-next.4",
34
- "@verdaccio/logger": "7.0.0-next.4",
35
- "@verdaccio/server": "7.0.0-next.4",
36
- "@verdaccio/server-fastify": "7.0.0-next.4",
37
- "core-js": "3.30.2",
32
+ "@verdaccio/config": "7.0.0-next.6",
33
+ "@verdaccio/core": "7.0.0-next.6",
34
+ "@verdaccio/logger": "7.0.0-next.6",
35
+ "@verdaccio/server": "7.0.0-next.6",
36
+ "@verdaccio/server-fastify": "7.0.0-next.6",
37
+ "core-js": "3.35.0",
38
38
  "debug": "4.3.4",
39
39
  "lodash": "4.17.21"
40
40
  },
41
41
  "devDependencies": {
42
- "@verdaccio/types": "12.0.0-next.1",
43
- "selfsigned": "1.10.14",
44
- "supertest": "6.3.3",
45
- "jest": "29.7.0"
42
+ "@verdaccio/types": "12.0.0-next.2",
43
+ "jest": "29.7.0",
44
+ "selfsigned": "2.4.1",
45
+ "supertest": "6.3.3"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"