Skip to content

Commit

Permalink
chore: update deps and fix audit (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 authored Jun 7, 2021
1 parent d9eee64 commit 7cfe35e
Show file tree
Hide file tree
Showing 8 changed files with 8,725 additions and 4,053 deletions.
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit $1
5 changes: 5 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
6 changes: 0 additions & 6 deletions husky.config.js

This file was deleted.

12,724 changes: 8,692 additions & 4,032 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
"pretest": "npm run lint",
"test": "npm run test:coverage",
"prepare": "npm run build",
"prepare": "husky install && npm run build",
"release": "standard-version"
},
"files": [
Expand All @@ -47,35 +47,35 @@
"schema-utils": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"css-loader": "^5.1.0",
"css-loader": "^5.2.6",
"del": "^6.0.0",
"del-cli": "^3.0.1",
"es-check": "5.2.0",
"eslint": "^7.20.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import": "^2.23.4",
"file-loader": "^6.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jsdom": "^16.6.0",
"lint-staged": "^10.5.4",
"memfs": "^3.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier": "^2.3.1",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"semver": "^7.3.4",
"standard-version": "^9.1.1",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"keywords": [
Expand Down
4 changes: 4 additions & 0 deletions test/runtime/injectStylesIntoLinkTag.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/

/* eslint-env browser */

import injectStylesIntoLinkTag from '../../src/runtime/injectStylesIntoLinkTag';
Expand Down
4 changes: 4 additions & 0 deletions test/runtime/injectStylesIntoStyleTag.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/

/* eslint-env browser */

import injectStylesIntoStyleTag from '../../src/runtime/injectStylesIntoStyleTag';
Expand Down

0 comments on commit 7cfe35e

Please sign in to comment.