Compare commits

..

No commits in common. "48657a1283471f951b6e5cabd2e115918bab889f" and "fcc6558b7fd1782727c525a3b090b4da825c7b34" have entirely different histories.

3 changed files with 3 additions and 6 deletions

View file

@ -8,7 +8,6 @@ All notable changes to this project will be documented in this file.
- Add `.cjs` and `.mjs` to `.editorconfig`
- Add dprint as code formatter
- Set `scrollbar-gutter: stable`
### 🚜 Refactor
@ -24,7 +23,6 @@ All notable changes to this project will be documented in this file.
- Update `stylelint-plugin-defensive-css`, `web-ext`
- Update dependencies
- Update dependencies
- Update dprint plugins
## \[[0.9.5](https://git.usrspace.at/XimeX/usrspace-browser-addon/releases/tag/v0.9.5)] - 2023-09-13

View file

@ -24,8 +24,8 @@
"src/browser-polyfill.js"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.88.3.wasm",
"https://plugins.dprint.dev/json-0.19.0.wasm",
"https://plugins.dprint.dev/typescript-0.88.2.wasm",
"https://plugins.dprint.dev/json-0.18.0.wasm",
"https://plugins.dprint.dev/markdown-0.16.2.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm"
]

View file

@ -34,7 +34,6 @@
"lint:web-ext": "web-ext lint -w",
"lint:js": "eslint .",
"lint:css": "stylelint \"src/*.css\"",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"fmt:update": "dprint config update",
"test": "echo \"Error: no test specified\" && exit 0",
@ -50,7 +49,7 @@
"postbuild:firefox": "npm run postbuild",
"postbuild:chromium": "npm run postbuild && npm run uninject-browser-polyfill",
"postinstall": "npm run copy-browser-polyfill",
"preversion": "npm run fmt:check && npm run lint && npm test",
"preversion": "npm run lint && npm test",
"version": "npm run copy-version && npm run update-changelog && git add CHANGELOG.md src/manifest.json",
"postversion": "npm run build:firefox",
"prepare": "husky install",