Skip to content

Commit 2776bf4

Browse files
authored
Merge pull request #371 from liangchunn/feature/deps-23042021
chore(dependencies): upgrade dependencies
2 parents 6b64b84 + eca2de5 commit 2776bf4

File tree

3 files changed

+527
-386
lines changed

3 files changed

+527
-386
lines changed

.github/workflows/nodejs.yml

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

1010
strategy:
1111
matrix:
12-
node-version: [10.x, 12.x, 14.x, 15.x]
12+
node-version: [12.x, 14.x, 15.x, 16.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1

package.json

Lines changed: 28 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"commit": "git-cz",
1717
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
1818
"prepublishOnly": "yarn compile",
19-
"prepublish": "pinst --disable",
20-
"postpublish": "pinst --enable",
21-
"postinstall": "husky install"
19+
"prepare": "husky install"
2220
},
2321
"bin": {
2422
"typescript-node-scripts": "./bin/typescript-node-scripts.js"
@@ -29,63 +27,62 @@
2927
"license": "MIT",
3028
"dependencies": {
3129
"@babel/code-frame": "7.12.13",
32-
"@babel/core": "7.13.14",
33-
"@babel/preset-env": "7.13.12",
34-
"@typescript-eslint/eslint-plugin": "4.20.0",
35-
"@typescript-eslint/parser": "4.20.0",
30+
"@babel/core": "7.13.16",
31+
"@babel/preset-env": "7.13.15",
32+
"@typescript-eslint/eslint-plugin": "4.22.0",
33+
"@typescript-eslint/parser": "4.22.0",
3634
"babel-core": "7.0.0-bridge.0",
3735
"babel-eslint": "10.1.0",
3836
"babel-jest": "26.6.3",
3937
"babel-loader": "8.2.2",
4038
"case-sensitive-paths-webpack-plugin": "2.4.0",
41-
"chalk": "4.1.0",
39+
"chalk": "4.1.1",
4240
"clean-webpack-plugin": "3.0.0",
43-
"eslint": "7.23.0",
41+
"eslint": "7.24.0",
4442
"eslint-plugin-import": "2.22.1",
45-
"eslint-webpack-plugin": "2.5.3",
46-
"filesize": "6.1.0",
47-
"fork-ts-checker-webpack-plugin": "6.2.0",
43+
"eslint-webpack-plugin": "2.5.4",
44+
"filesize": "6.3.0",
45+
"fork-ts-checker-webpack-plugin": "6.2.4",
4846
"fs-extra": "9.1.0",
4947
"jest": "26.6.3",
5048
"pstree.remy": "1.1.8",
51-
"strip-ansi": "6.0.0",
49+
"strip-ansi": "7.0.0",
5250
"text-table": "0.2.0",
53-
"ts-jest": "26.5.4",
54-
"ts-loader": "8.1.0",
51+
"ts-jest": "26.5.5",
52+
"ts-loader": "9.1.0",
5553
"tsconfig-paths-webpack-plugin": "3.5.1",
56-
"tslib": "^2.1.0",
57-
"webpack": "5.28.0",
54+
"tslib": "^2.2.0",
55+
"webpack": "5.35.0",
5856
"webpack-merge": "5.7.3",
59-
"webpack-node-externals": "2.5.2"
57+
"webpack-node-externals": "3.0.0"
6058
},
6159
"devDependencies": {
62-
"@commitlint/cli": "^11.0.0",
63-
"@commitlint/config-conventional": "^11.0.0",
60+
"@commitlint/cli": "^12.1.1",
61+
"@commitlint/config-conventional": "^12.1.1",
6462
"@types/babel-code-frame": "^6.20.4",
6563
"@types/case-sensitive-paths-webpack-plugin": "^2.1.5",
66-
"@types/eslint": "^7.2.8",
67-
"@types/fs-extra": "^9.0.9",
64+
"@types/eslint": "^7.2.10",
65+
"@types/fs-extra": "^9.0.11",
6866
"@types/jest": "^26.0.22",
69-
"@types/node": "^14.14.9",
67+
"@types/node": "^14.14.41",
7068
"@types/text-table": "^0.2.1",
7169
"@types/webpack-merge": "^5.0.0",
7270
"@types/webpack-node-externals": "^2.5.1",
73-
"commitizen": "^4.2.2",
71+
"commitizen": "^4.2.3",
7472
"conventional-changelog-cli": "^2.1.1",
7573
"cz-conventional-changelog": "^3.3.0",
76-
"eslint-config-prettier": "^8.1.0",
77-
"eslint-plugin-prettier": "^3.3.1",
78-
"husky": "^5.0.1",
79-
"lint-staged": "^10.5.1",
80-
"pinst": "^2.1.1",
74+
"eslint-config-prettier": "^8.2.0",
75+
"eslint-plugin-prettier": "^3.4.0",
76+
"husky": "^6.0.0",
77+
"lint-staged": "^10.5.4",
8178
"prettier": "^2.2.1",
82-
"typescript": "4.2.3"
79+
"typescript": "4.2.4"
8380
},
8481
"peerDependencies": {
8582
"typescript": ">=3.3.1 <4.3.0"
8683
},
8784
"engines": {
88-
"node": ">=10.12.0"
85+
"node": ">=12"
8986
},
9087
"lint-staged": {
9188
"*.ts": "prettier --write"

0 commit comments

Comments
 (0)