-
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 5 commits
d2ada20
d26c3fa
a263c15
9339dc6
9a06d7b
78a1bbe
3e0a7f3
43d176e
9d40cca
cffb6af
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,33 +3,33 @@ | |||||
| "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", | ||||||
| "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", | ||||||
|
||||||
| "clean-webpack-plugin": "^1.0.1", | |
| "clean-webpack-plugin": "^3.0.0", |
Copilot
AI
Jan 9, 2026
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 style-loader is still at v0.23.1, which is incompatible with webpack 5. This package should be updated to v3.0.0 or later for webpack 5 compatibility. However, if the intention is to extract CSS into separate files (as suggested by the HTML changes), this should be replaced with mini-css-extract-plugin instead.
| "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', | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.