Update package.json
Some checks failed
myip.wtf / build (18) (push) Has been cancelled
myip.wtf / tests (18) (push) Has been cancelled

This commit is contained in:
0x1eef 2024-08-03 18:07:13 -03:00
parent 3b36d94233
commit 0c3e400b58
2 changed files with 6 additions and 6 deletions

View file

@ -42,6 +42,6 @@ the extension can be added to the browser from `about:addons`.
## License ## License
[BSD Zero Clause](https://choosealicense.com/licenses/0bsd/). [BSD Zero Clause](https://choosealicense.com/licenses/0bsd/)
<br> <br>
See [LICENSE](./LICENSE). See [LICENSE](./LICENSE)

View file

@ -32,9 +32,9 @@
"webpack-merge": "^6.0" "webpack-merge": "^6.0"
}, },
"scripts": { "scripts": {
"build:production": "npm exec webpack -- --config webpack.production.js", "build:production": "npx webpack --config webpack.production.js",
"build:development": "npm exec webpack -- --config webpack.development.js", "build:development": "npx webpack --config webpack.development.js",
"test": "npm exec jest -- test", "test": "npx jest test",
"format": "npm exec prettier -- -w src/js" "eslint": "npx eslint src/"
} }
} }