Skip to content

Commit

Permalink
fix: relax node engines upper constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed May 19, 2023
1 parent 3ac074c commit 010b539
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/babel-preset-app/package.json
Expand Up @@ -28,7 +28,7 @@
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/builder/package.json
Expand Up @@ -25,7 +25,7 @@
"upath": "^2.0.1"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Expand Up @@ -38,7 +38,7 @@
"wrap-ansi": "^7.0.0"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Expand Up @@ -21,7 +21,7 @@
"ufo": "^1.1.2"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Expand Up @@ -18,7 +18,7 @@
"lodash": "^4.17.21"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/generator/package.json
Expand Up @@ -19,7 +19,7 @@
"ufo": "^1.1.2"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Expand Up @@ -27,7 +27,7 @@
"ufo": "^1.1.2"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Expand Up @@ -28,7 +28,7 @@
"@types/webpack-hot-middleware": "2.25.5"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Expand Up @@ -22,7 +22,7 @@
"ufo": "^1.1.2"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-app/package.json
Expand Up @@ -25,7 +25,7 @@
"vuex": "^3.6.2"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-renderer/package.json
Expand Up @@ -21,7 +21,7 @@
"vue-server-renderer": "^2.7.14"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack/package.json
Expand Up @@ -57,7 +57,7 @@
"webpackbar": "^5.0.2"
},
"engines": {
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
"node": "^14.18.0 || >=16.10.0"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 010b539

Please sign in to comment.