Skip to content

Commit

Permalink
fix(engines): update engines to match top level package
Browse files Browse the repository at this point in the history
  • Loading branch information
blabute committed Nov 1, 2023
1 parent 5e21799 commit 4f1a4d9
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/node-plop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"url": "https://github.com/plopjs/plop/issues"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
},
"devDependencies": {
"@types/inquirer-autocomplete-prompt": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/plop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"v8flags": "^4.0.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
},
"preferGlobal": true,
"bin": "./bin/plop.js"
Expand Down
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/action-failure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-action-failure",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/add-action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-add-action",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/cjs-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-prompts-only",
"type": "commonjs",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/cjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-prompts-only",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-prompts-only",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/mjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-prompts-only",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/prompt-only/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-prompts-only",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/plop/tests/examples/wrap-plop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "plop-example-wrap",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": ">=18"
}
}

0 comments on commit 4f1a4d9

Please sign in to comment.