Skip to content

Commit

Permalink
chore(repo)!: bump minimum node version to 14 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Dec 19, 2022
1 parent bf6bc35 commit 14aedeb
Show file tree
Hide file tree
Showing 13 changed files with 2,525 additions and 2,926 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node: ['16']
node: ['18']

name: Node v${{ matrix.node }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node: ['16', '14', '12']
node: ['18', '16', '14']

name: Node v${{ matrix.node }}

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
18
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"bugs": "https://github.com/shellscape/webpack-manifest-plugin/issues",
"main": "dist/index.js",
"engines": {
"node": ">=12.22.0"
"node": ">=14"
},
"scripts": {
"build": "tsc --project tsconfig.json",
Expand All @@ -23,17 +23,17 @@
"lint:json": "prettier --write codecov.yml package.json",
"prepare": "husky install",
"prepublishOnly": "pnpm lint && pnpm build",
"pretest": "pnpm build",
"pretest": "pnpm install && pnpm build",
"security": "pnpm audit --audit-level=high --prod",
"test": "pnpm install && ava"
"test": "ava --timeout=2m"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"webpack": "^5.47.0"
"webpack": "^5.75.0"
},
"dependencies": {
"tapable": "^2.0.0",
Expand All @@ -48,11 +48,11 @@
"@types/webpack": "^5.28.0",
"@types/webpack-sources": "^2.1.1",
"@wordpress/dependency-extraction-webpack-plugin": "^3.1.0",
"ava": "^3.13.0",
"ava": "^5.1.0",
"codecov": "^3.1.0",
"copy-webpack-plugin": "^6.2.1",
"del": "^6.0.0",
"eslint-config-shellscape": "^4.2.0",
"eslint-config-shellscape": "^6.0.0",
"file-loader": "^6.2.0",
"husky": "8.0.2",
"lint-staged": "11.1.1",
Expand All @@ -65,9 +65,9 @@
"style-loader": "^0.23.0",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"webpack": "^5.47.0",
"webpack-merge": "^5.2.0"
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-merge": "^5.8.0"
},
"ava": {
"files": [
Expand Down
Loading

0 comments on commit 14aedeb

Please sign in to comment.