-
Notifications
You must be signed in to change notification settings - Fork 28
Automatically block & unblock tabs #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
d2ada20
d26c3fa
a263c15
9339dc6
9a06d7b
78a1bbe
3e0a7f3
43d176e
9d40cca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,34 +2,34 @@ | |||||
| "scripts": { | ||||||
| "watch": "webpack --mode=development --watch", | ||||||
| "build": "webpack --mode=development", | ||||||
| "release": "webpack --mode=development && web-ext build --source-dir extension --config web-ext-config.js", | ||||||
| "browser": "web-ext run --browser-console --source-dir extension", | ||||||
| "release": "webpack --mode=development && web-ext build --source-dir extension --config web-ext-config.mjs", | ||||||
| "browser": "web-ext run --browser-console --source-dir extension --devtools", | ||||||
| "test": "jest" | ||||||
| }, | ||||||
| "devDependencies": { | ||||||
| "@babel/core": "^7.12.10", | ||||||
| "@babel/preset-env": "^7.12.11", | ||||||
| "@babel/preset-react": "^7.12.10", | ||||||
| "@types/jest": "^26.0.20", | ||||||
| "babel-jest": "^26.6.3", | ||||||
| "babel-jest": "^30.2.0", | ||||||
| "babel-loader": "^8.2.2", | ||||||
| "clean-webpack-plugin": "^1.0.1", | ||||||
| "core-js": "^3.8.2", | ||||||
| "css-loader": "^2.1.1", | ||||||
| "css-loader": "^7.1.2", | ||||||
| "eslint": "^7.17.0", | ||||||
| "eslint-config-airbnb": "^18.2.1", | ||||||
| "eslint-plugin-import": "^2.22.1", | ||||||
| "eslint-plugin-jest": "^24.1.3", | ||||||
| "eslint-plugin-jsx-a11y": "^6.4.1", | ||||||
| "eslint-plugin-react": "^7.22.0", | ||||||
| "eslint-plugin-react-hooks": "^4.2.0", | ||||||
| "file-loader": "^3.0.1", | ||||||
| "jest": "^26.6.3", | ||||||
| "file-loader": "^6.2.0", | ||||||
| "jest": "^30.2.0", | ||||||
| "react-test-renderer": "^16.14.0", | ||||||
| "style-loader": "^0.23.1", | ||||||
|
||||||
| "style-loader": "^0.23.1", | |
| "style-loader": "^3.0.0", |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| module.exports = { | ||
| export default { | ||
| ignoreFiles: [ | ||
| 'package.json', | ||
| 'package-lock.json', | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The webpack has been upgraded from v4 to v5, but the clean-webpack-plugin is still at v1.0.1 which is not compatible with webpack 5. This will cause build errors. The plugin should be updated to v3.0.0 or later, or you should use webpack 5's built-in asset cleaning feature by setting 'output.clean: true' in webpack.config.js.