fregante
fregante
1. stylelint dropped stylistic rules 2. prettier deprecated `stylelint-config-prettier` 3. `@stylistic/stylelint-plugin` [doesn't mention prettier anywhere](https://github.com/search?q=repo%3Astylelint-stylistic%2Fstylelint-stylistic%20prettier&type=code) So now there's no way to use this config together with Prettier other than by...
```js function abortAll(iterable) { for (const controller of iterable) { controller.abort(); } } function abortAllAndClear(iterable) { abortAll(iterable); if (Array.isArray(iterable)) { iterable.length = 0; } else { iterable.clear(); } } ```
You may consider these two modern setups: - https://wxt.dev/ - https://crxjs.dev/vite-plugin/ Parcel comes with some disadvantages that may be deal breakers for some. I don't know how well those two...
I'll prepare a list of things that will likely change: - https://github.com/fregante/chrome-webstore-upload-cli/issues/80 - Node 20+ - Drop `recursive-readdir` - Drop `--auto-publish` (due to https://github.com/fregante/chrome-webstore-upload-cli/pull/81) - Forbid unused `--source` when using...
for #43
If I remember correctly it's bad practice to pass secrets as flags. I wonder if they should just be dropped in favor of exclusively reading from ENV. For now in...
I'm bundling a library that has about a hundred small exports, each followed by "inline test data" that should not be shipped to production. I'm currently using `--drop-labels=TEST` and a...
@tjx666 Since you rewrote part of the extension in your repo, you're free to replace the code here with yours (in a PR), making sure to preserve the code to...
I'm trying to use `preserveModules: true` primarily for JS code, but this has a confusing output for CSS files. ### Input ```js /* main.js */ import './alpha.css'; import './beta.css'; console.log('hi')...