Skip to content

Commit 14aedeb

Browse files
committed
chore(repo)!: bump minimum node version to 14 LTS
1 parent bf6bc35 commit 14aedeb

File tree

13 files changed

+2525
-2926
lines changed

13 files changed

+2525
-2926
lines changed

.github/workflows/node-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node: ['16']
19+
node: ['18']
2020

2121
name: Node v${{ matrix.node }}
2222
steps:

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node: ['16', '14', '12']
19+
node: ['18', '16', '14']
2020

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

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
18

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"bugs": "https://github.com/shellscape/webpack-manifest-plugin/issues",
1010
"main": "dist/index.js",
1111
"engines": {
12-
"node": ">=12.22.0"
12+
"node": ">=14"
1313
},
1414
"scripts": {
1515
"build": "tsc --project tsconfig.json",
@@ -23,17 +23,17 @@
2323
"lint:json": "prettier --write codecov.yml package.json",
2424
"prepare": "husky install",
2525
"prepublishOnly": "pnpm lint && pnpm build",
26-
"pretest": "pnpm build",
26+
"pretest": "pnpm install && pnpm build",
2727
"security": "pnpm audit --audit-level=high --prod",
28-
"test": "pnpm install && ava"
28+
"test": "ava --timeout=2m"
2929
},
3030
"files": [
3131
"dist",
3232
"README.md",
3333
"LICENSE"
3434
],
3535
"peerDependencies": {
36-
"webpack": "^5.47.0"
36+
"webpack": "^5.75.0"
3737
},
3838
"dependencies": {
3939
"tapable": "^2.0.0",
@@ -48,11 +48,11 @@
4848
"@types/webpack": "^5.28.0",
4949
"@types/webpack-sources": "^2.1.1",
5050
"@wordpress/dependency-extraction-webpack-plugin": "^3.1.0",
51-
"ava": "^3.13.0",
51+
"ava": "^5.1.0",
5252
"codecov": "^3.1.0",
5353
"copy-webpack-plugin": "^6.2.1",
5454
"del": "^6.0.0",
55-
"eslint-config-shellscape": "^4.2.0",
55+
"eslint-config-shellscape": "^6.0.0",
5656
"file-loader": "^6.2.0",
5757
"husky": "8.0.2",
5858
"lint-staged": "11.1.1",
@@ -65,9 +65,9 @@
6565
"style-loader": "^0.23.0",
6666
"ts-node": "^10.1.0",
6767
"tslib": "^2.3.0",
68-
"typescript": "^4.3.5",
69-
"webpack": "^5.47.0",
70-
"webpack-merge": "^5.2.0"
68+
"typescript": "^4.9.4",
69+
"webpack": "^5.75.0",
70+
"webpack-merge": "^5.8.0"
7171
},
7272
"ava": {
7373
"files": [

0 commit comments

Comments
 (0)