extract-loader icon indicating copy to clipboard operation
extract-loader copied to clipboard

webpack loader to extract HTML and CSS from the bundle

Results 60 extract-loader issues
Sort by recently updated
recently updated
newest added

For https://github.com/webpack/webpack.js.org/pull/3776 Refers https://github.com/webpack/webpack.js.org/pull/3776#issuecomment-646063364

For peerigon/extract-loader#79 The loader fails to extract scripts for html entry points, and raises an exception when those scripts are ES modules. These tests expose the issue to help get...

- Operating System: Windows 10 Pro - Node Version: 13.12.0 - NPM Version: 6.14.4 - webpack Version: 4.42.1 - extract-loader Version: 5.0.1 ### Expected Behavior extract-loader should correctly process ES6...

Hi, I'm in the works of developing my own static site generator that relies on pug templates, and markdown content. I use webpack to bundle the precompiled pug (i.e. html)...

When I used CNPM to install the package, 'TypeError require(... ...... ) is not a function error' occurred, mainly because the path of CNPM starts with _ when installing the...

Bumps [lodash.template](https://github.com/lodash/lodash) from 4.4.0 to 4.5.0. Commits - [`ab73503`](https://github.com/lodash/lodash/commit/ab73503859a2d2f7f603bc8a293ce93ecc071e83) Bump to v4.5.0. - [`a4f7d4c`](https://github.com/lodash/lodash/commit/a4f7d4cc2a3b6d3a43f6c27beadbf90410eecdcd) Rebuild lodash and docs. - [`cca5ac6`](https://github.com/lodash/lodash/commit/cca5ac60d61a2f786eeafadb674d6e12fc6179c8) Fix npm-test by removing the call to test-docs. - [`9f7f9fc`](https://github.com/lodash/lodash/commit/9f7f9fc3c5f1a4db9a2134950872440c792ee8bb)...

dependencies

Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.3.1 to 1.4.3. Commits - [`23f4ddc`](https://github.com/mysticatea/eslint-utils/commit/23f4ddc58eda5e6aec3d6a43c6266acbe19345cd) 🔖 1.4.3 - [`8f9e481`](https://github.com/mysticatea/eslint-utils/commit/8f9e481ecc1204c7a1331b697f97903f90c75154) 🐛 fix reference tracker false positive - [`6633278`](https://github.com/mysticatea/eslint-utils/commit/663327835abfb1f62fc6fc5d69028457e11b5f80) ⚒ fix test scripts - [`7c8e67c`](https://github.com/mysticatea/eslint-utils/commit/7c8e67c22f7222685a6a9154ba5eec2ac4896a3e) ⚒ fix build...

dependencies

Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. Commits - [`754f0c2`](https://github.com/jonschlinkert/mixin-deep/commit/754f0c20e1bc13ea5a21a64fbc7d6ba5f7b359b9) 1.3.2 - [`90ee1fa`](https://github.com/jonschlinkert/mixin-deep/commit/90ee1fab375fccfd9b926df718243339b4976d50) ensure keys are valid when mixing in values - See full diff in [compare view](https://github.com/jonschlinkert/mixin-deep/compare/1.3.1...1.3.2) Maintainer changes This...

dependencies

Bumps [acorn](https://github.com/acornjs/acorn) from 5.3.0 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator 910e62b Mark version 5.7.3 3442a80 Make generate-identifier-regex capable of rewriting...

dependencies

webpack.config.js ```module.exports = { mode: 'development', module: { rules: [ { test: /\.html$/i, use: ['file-loader?name=[name].[ext]', 'extract-loader', 'html-loader'], }, { test: /\.jpg$/, use: ['file-loader?name=[name].[ext]'], } ], }, }; ``` src/index.js ```import...