@verdaccio/types 11.0.0-6-next.8 → 11.0.0-6-next.9

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 11.0.0-6-next.9
4
+
5
+ ### Major Changes
6
+
7
+ - 794af76c: Remove Node 12 support
8
+
9
+ - We need move to the new `undici` and does not support Node.js 12
10
+
11
+ ### Minor Changes
12
+
13
+ - 154b2ecd: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications
14
+
3
15
  ## 11.0.0-6-next.8
4
16
 
5
17
  ### Major Changes
package/index.d.ts CHANGED
@@ -532,7 +532,7 @@ declare module '@verdaccio/types' {
532
532
 
533
533
  // FIXME: error should be export type `VerdaccioError = HttpError & { code: number };`
534
534
  // instead of AuthError
535
- // but this type is on @verdaccio/commons-api and cannot be used here yet (I don't know why)
535
+ // but this type is on @verdaccio/core and cannot be used here yet (I don't know why)
536
536
  interface HttpError extends Error {
537
537
  status: number;
538
538
  statusCode: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/types",
3
- "version": "11.0.0-6-next.8",
3
+ "version": "11.0.0-6-next.9",
4
4
  "description": "verdaccio types definitions",
5
5
  "keywords": [
6
6
  "private",
@@ -17,7 +17,7 @@
17
17
  "license": "MIT",
18
18
  "homepage": "https://verdaccio.org",
19
19
  "engines": {
20
- "node": ">=10",
20
+ "node": ">=14",
21
21
  "npm": ">=6"
22
22
  },
23
23
  "repository": {