webpack-monkey icon indicating copy to clipboard operation
webpack-monkey copied to clipboard

A webpack plugin for developing your userscripts with a modern workflow, featuring HMR, meta generation, and more.

Results 5 webpack-monkey issues
Sort by recently updated
recently updated
newest added

Firstly, thanks for this plugin. Finally, I have a tool that allows me to manage my UserScripts in a truly efficient manner! Regarding the PR: the current meta implementation is...

I tried: ```json { "name":"test", "match": ["*://localhost:54220/"] } ``` And got an error in console: ``` Error matching script "main": TypeError: Invalid pattern: *://localhost:54220/ at urlMatch (utils.js:23:15) at eval (client.js:27:60)...

I want to import [normalize.css](https://github.com/necolas/normalize.css/), but there is a "`" character in the CSS comments, which is causing the browser to fail to parse it. https://github.com/necolas/normalize.css/blob/fc091cce1534909334c1911709a39c22d406977b/normalize.css#L28

- Closes #4 - Add test case to unsure compatibility with future releases

Hi there. I added rm_style.css to userscript. With default rules: ```js rules: [ { exclude: /(node_modules)/, test: /\.css$/i, use: ['style-loader', 'css-loader'], }, ], ``` Webpack processed this, added text from...