Skip to content

Commit 8d5ab9a

Browse files
authoredMar 1, 2021
chore: updated deps (#587)
1 parent f5e661b commit 8d5ab9a

File tree

6 files changed

+1539
-2052
lines changed

6 files changed

+1539
-2052
lines changed
 

‎.husky/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

‎.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx commitlint --edit $1

‎.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx lint-staged

‎husky.config.js

-6
This file was deleted.

‎package-lock.json

+1,513-2,033
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+17-13
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@
3232
"test": "npm run test:coverage",
3333
"prepare": "npm run build",
3434
"release": "standard-version",
35-
"defaults": "webpack-defaults"
35+
"defaults": "webpack-defaults",
36+
"postinstall": "husky install",
37+
"prepublishOnly": "pinst --disable",
38+
"postpublish": "pinst --enable"
3639
},
3740
"files": [
3841
"dist"
@@ -41,7 +44,7 @@
4144
"webpack": "^5.1.0"
4245
},
4346
"dependencies": {
44-
"fast-glob": "^3.2.4",
47+
"fast-glob": "^3.2.5",
4548
"glob-parent": "^5.1.1",
4649
"globby": "^11.0.2",
4750
"loader-utils": "^2.0.0",
@@ -51,31 +54,32 @@
5154
"serialize-javascript": "^5.0.1"
5255
},
5356
"devDependencies": {
54-
"@babel/cli": "^7.12.10",
55-
"@babel/core": "^7.12.10",
56-
"@babel/preset-env": "^7.12.10",
57-
"@commitlint/cli": "^11.0.0",
58-
"@commitlint/config-conventional": "^11.0.0",
57+
"@babel/cli": "^7.13.0",
58+
"@babel/core": "^7.13.8",
59+
"@babel/preset-env": "^7.13.8",
60+
"@commitlint/cli": "^12.0.1",
61+
"@commitlint/config-conventional": "^12.0.1",
5962
"@webpack-contrib/defaults": "^6.3.0",
6063
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
6164
"babel-jest": "^26.6.3",
6265
"cross-env": "^7.0.2",
6366
"del": "^6.0.0",
6467
"del-cli": "^3.0.1",
65-
"eslint": "^7.13.0",
66-
"eslint-config-prettier": "^7.0.0",
68+
"eslint": "^7.20.0",
69+
"eslint-config-prettier": "^8.1.0",
6770
"eslint-plugin-import": "^2.22.1",
6871
"file-loader": "^6.1.1",
69-
"husky": "^4.3.0",
72+
"husky": "^5.1.1",
7073
"is-gzip": "^2.0.0",
7174
"jest": "^26.6.3",
72-
"lint-staged": "^10.5.1",
75+
"lint-staged": "^10.5.4",
7376
"memfs": "^3.2.0",
7477
"mkdirp": "^1.0.4",
7578
"npm-run-all": "^4.1.5",
79+
"pinst": "^2.1.6",
7680
"prettier": "^2.1.2",
77-
"standard-version": "^9.0.0",
78-
"webpack": "^5.10.0"
81+
"standard-version": "^9.1.1",
82+
"webpack": "^5.24.2"
7983
},
8084
"keywords": [
8185
"webpack",

0 commit comments

Comments
 (0)
Please sign in to comment.