fregante

Results 1503 comments of fregante

It turns out, my first feature request was still the best way to achieve this: > add a magic comment to the `import()` to disable the automatic injection of the...

What's "./file.css"? Where should I use that URL? How would it fix/avoid the issue?

What CSS chunk? If you're talking about the chunks generated by `import()`, I'm already importing it via `link`, it's a solved problem. The problems here where a combination of: -...

> * knowing which stylesheets are created It turns out, this is still an issue. There are situations where the CSS bundle name is not what's suggested in `webpackChunkName`: presumably...

Alternative solutions: - don't extract CSS (leave it to css-loader) - don't generate CSS file at all (drop CSS) It feels like either one of these is already possible via...

The `import` should keep working as expected for the JS part; the magic comment would only prevent the extraction, generation and/or injection of any CSS encountered. Depending on the specific...

> `import` **should return module** Where did I say to change that behavior? What I'm suggesting with `no-inject` is exactly what the plugin already does with `runtime: false`, except that...

I recently published 2 modules that might help you with this: https://github.com/fregante/webext-domain-permission-toggle https://github.com/fregante/webext-dynamic-content-scripts You'd just need: ```sh npm i webext-domain-permission-toggle webext-dynamic-content-scripts ``` ```js // in background.js import 'webext-dynamic-content-scripts'; import addDomainPermissionToggle...

I don't want dependabot because I don't want a bunch of random PRs. Please don't just use dependabot manually and do the same thing. What I do generally is update...

Thanks, yes, you can update all at once