Code Monkey home page Code Monkey logo

webpack-plugin-hash-output's Introduction

webpack-plugin-hash-output

Build Status

Plugin to replace webpack chunkhash with an md5 hash of the final file conent.

Installation

With npm

npm install webpack-plugin-hash-output --save-dev

With yarn

yarn add webpack-plugin-hash-output --dev

Why?

There are other webpack plugins for hashing out there. But when they run, they don't "see" the final form of the code, because they run before plugins like webpack.optimize.UglifyJsPlugin. In other words, if you change webpack.optimize.UglifyJsPlugin config, your hashes won't change, creating potential conflicts with cached resources.

The main difference is that webpack-plugin-hash-output runs in the last compilation step. So any change in webpack or any other plugin that actually changes the output, will be "seen" by this plugin, and therefore that change will be reflected in the hash.

It will generate files like entry.<hash>.js, where <hash> is always a hash of the content (well, a subset of). Example:

$ md5 entry.32f1718dd08eccda2791.js

MD5 (entry.32f1718dd08eccda2791.js) = 32f1718dd08eccda2791ff7ed466bd98

All other assets (common files, manifest files, HTML output...) will use the new md5 hash to reference the asset.

Compatibility

Requires webpack >=4

Usage

Just add this plugin as usual.

// webpack.config.js
const HashOutput = require('webpack-plugin-hash-output');

module.exports = {
    // ...
    output: {
        //...
        filename: '[name].[chunkhash].js',
    },
    plugins: [
        new HashOutput(options)
    ]
};

Sourcemap support

This plugin partially supports sourcemaps. When a chunk hash is recomputed, it will update the name of the chunk in the chunks's sourcemap, but it won't recompute the name of the hash file. This has the side effect that the name of the sourcemap will differ from the name of the chunk. Example:

Before:

// app.<oldhash>.js

// ...code...
//# sourceMappingURL=entry.<oldhash>.js.map
// app.<oldhash>.js.map

// ...
"file":"app.<oldhash>.js"
// ...

After:

// app.<newhash>.js

// ...code...
//# sourceMappingURL=entry.<oldhash>.js.map
// app.<oldhash>.js.map

// ...
"file":"app.<newhash>.js"
// ...

We can't fully support sourcemaps (i.e. recomute sourcemap hash) because the circular reference: we can't compute sourcemap hash without computing the file hash first, and we can't compute the file hash without the sourcemap hash.

Interaction with other plugins

Because this plugin modifies the name of the assets, it break other plugins that also operate on the name of the assets if the order of the plugins is not correct. For plugin-webpack-hash-output to work, it has to be the first plugin to run in the emit phase. Inside the same phase, the order of the plugins is determined by the order in which they appear in webpack's config option plugins.

A specific example of this is html-webpack-plugin: plugin-webpack-hash-output must be listed before html-webpack-plugin. Example:

plugins: [
    new HashOutput(...),
    new HtmlWebpackPlugin(...),
]

When the webpack compilation starts, this plugin will check if there are other plugins that might conflict with the output and display a warning. It is recommended you fix the order of the plugins unless you really know what you are doing:

[WARNING] There are other plugins configured that might interfere with webpack-plugin-hash-output.
For this plugin to work correctly, it should be the first plugin in the "emit" phase. Please
be sure that the rest of the plugins run after webpack-plugin-hash-output (ensure they are listed
after webpack-plugin-hash-output in the 'plugins' option in your webpack config).

Plugins that could interfere with webpack-plugin-hash-output:
 * HtmlWebpackPlugin

Options

Note: Use Webpack's own hash output options to configure hash function and length.

options.validateOutput

boolean, defaults to false.

After webpack has compiled and generated all the assets, checks that the hash of the content is included in the file. If it is not, it will throw an error and the webpack process will fail.

options.validateOutputRegex

regex, defaults to /^.*$/

When validating the output (see options.validateOutput), only evaluate hashes for files matching this regexp. Useful for skipping source maps or other output. Example:

module.exports = {
    entry: {
        main: './src/app.js',
    },
    output: {
        filename: 'assets/[name].[chunkhash].js',
    },
    plugins: [
        new HashOutput({
            validateOutput: true,
            // Check that md5(assets/main.<hash>.js) === <hash>, but doesn't check fragments/app.html
            validateOutputRegex: /^assets\/.*\.js$/,
        }),
        new HtmlWebpackPlugin({
            filename: 'fragments/app.html',
            chunks: ['main'],
        }),
    ]
};

Contributions

Running tests

Tests can be run by:

yarn test

After running the tests, you might want to run yarn run clean to clean up temp files generated by the tests.

webpack-plugin-hash-output's People

Contributors

czeng3 avatar goodforonefare avatar li0liq avatar liamcmitchell-sc avatar scinos avatar strml avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

webpack-plugin-hash-output's Issues

Loading chunk failed

This plugin is causing my JS chunks to not load.

I'm getting errors like,

Loading chunk 25 failed

Simply removing the plugin makes the problem go away.

Under this plugin, the CSS and JS should have different filenames as I understand it, but that's not what webpack is trying to load:

image

I'm using a runtime chunk:

            optimization: {
                minimize: false,
                removeAvailableModules: false,
                runtimeChunk: 'single',
            }

I suspect that doesn't play well with this plugin?

Versions, for your reference:

❯ yarn list | grep webpack            
├─ [email protected]
│  └─ webpack-sources@^1.0.1
│  └─ webpack-sources@^1.1.0
├─ [email protected]
│  ├─ webpack-sources@^1.1.0
├─ [email protected]
├─ [email protected]
│  ├─ webpack-addons@^1.1.5
├─ [email protected]
│  └─ webpack-log@^1.0.1
├─ [email protected]
│  ├─ [email protected]
│  ├─ webpack-log@^1.1.2
├─ [email protected]
├─ [email protected]
├─ [email protected]
├─ [email protected]
│  ├─ uglifyjs-webpack-plugin@^1.2.4
│  └─ webpack-sources@^1.0.1
└─ [email protected]
   └─ webpack-sources@^1.0.1

Let me know if there's anything else you need. I'm going to disable this for now.

Fails with Webpack 4

When used with Webpack 4, the following error is emitted:

 69% building modules 1345/1350 modules 5 active ...styles/vendor/bootstrap-dropdown.scss/Users/fisu/Projects/yoo/node_modules/webpack/lib/Chunk.js:438
		throw new Error("Chunk.parents: Use ChunkGroup.getParents() instead");

With the following traceback:

Error: Chunk.parents: Use ChunkGroup.getParents() instead
    at Chunk.get (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Chunk.js:438:9)
    at compilation.plugin (/Users/fisu/Projects/yoo/node_modules/webpack-plugin-hash-output/src/OutputHash.js:140:34)
    at SyncHook.eval [as call] (eval at create (/Users/fisu/Projects/yoo/node_modules/tapable/lib/HookCodeFactory.js:17:12), <anonymous>:7:1)
    at SyncHook.lazyCompileHook [as _call] (/Users/fisu/Projects/yoo/node_modules/tapable/lib/Hook.js:35:21)
    at hooks.optimizeAssets.callAsync.err (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compilation.js:952:38)
    at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/fisu/Projects/yoo/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:6:1)
    at AsyncSeriesHook.lazyCompileHook [as _callAsync] (/Users/fisu/Projects/yoo/node_modules/tapable/lib/Hook.js:35:21)
    at hooks.optimizeChunkAssets.callAsync.err (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compilation.js:948:32)
    at _err0 (eval at create (/Users/fisu/Projects/yoo/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:11:1)
    at /Users/fisu/Projects/yoo/node_modules/uglifyjs-webpack-plugin/dist/index.js:262:11
    at _class.runTasks (/Users/fisu/Projects/yoo/node_modules/uglifyjs-webpack-plugin/dist/uglify/index.js:63:9)
    at UglifyJsPlugin.optimizeFn (/Users/fisu/Projects/yoo/node_modules/uglifyjs-webpack-plugin/dist/index.js:182:16)
    at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/fisu/Projects/yoo/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:7:1)
    at AsyncSeriesHook.lazyCompileHook [as _callAsync] (/Users/fisu/Projects/yoo/node_modules/tapable/lib/Hook.js:35:21)
    at hooks.additionalAssets.callAsync.err (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compilation.js:943:36)
    at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/fisu/Projects/yoo/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:6:1)
    at AsyncSeriesHook.lazyCompileHook [as _callAsync] (/Users/fisu/Projects/yoo/node_modules/tapable/lib/Hook.js:35:21)
    at hooks.optimizeTree.callAsync.err (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compilation.js:939:32)
    at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/fisu/Projects/yoo/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:6:1)
    at AsyncSeriesHook.lazyCompileHook [as _callAsync] (/Users/fisu/Projects/yoo/node_modules/tapable/lib/Hook.js:35:21)
    at Compilation.seal (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compilation.js:881:27)
    at hooks.make.callAsync.err (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compiler.js:464:17)
    at _err0 (eval at create (/Users/fisu/Projects/yoo/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:11:1)
    at _addModuleChain (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compilation.js:749:12)
    at processModuleDependencies.err (/Users/fisu/Projects/yoo/node_modules/webpack/lib/Compilation.js:688:9)
    at process._tickCallback (internal/process/next_tick.js:150:11)
error Command failed with exit code 1.

Hung in infinite loop

The fix for #15 likely introduced an infinite loop. Builds froze with:

93% after asset optimization Update chunks

Maximum call stack size exceeded

I get this error as soon as I added new HashOutput() to my list of plugins:

Unhandled rejection RangeError: Maximum call stack size exceeded        
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:40)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)
    at chunkGroup.getParents.map.parentGroup (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:112:12)
    at Array.map (<anonymous>)
    at getAllParents (/home/me/Projects/myproject/node_modules/webpack-plugin-hash-output/src/OutputHash.js:110:36)

My 'compiled' webpack.config looks like this, if you need to see it:

{ target: 'web',
    context: '/home/me/Projects/myproject',
    mode: 'production',
    entry:
    { main:
        [ '/home/me/Projects/myproject/assets/scripts/lib/autofocus-polyfill',
            '/home/me/Projects/myproject/assets/scripts/lib/matches-polyfill',
            'whatwg-fetch',
            'core-js/es6',
            'core-js/stage/4',
            '/home/me/Projects/myproject/assets/main' ],
            print:
        [ '/home/me/Projects/myproject/assets/stylesheets/print' ] },
    output:
    { path: '/home/me/Projects/myproject/www/assets',
        pathinfo: false,
        publicPath: '/assets/',
        crossOriginLoading: 'anonymous',
        filename: '[name].[chunkhash].js',
        chunkFilename: 'chunk.[chunkhash].js' },
    resolve:
    { modules:
        [ '/home/me/Projects/myproject/assets',
            '/home/me/Projects/myproject/node_modules/',
            '/home/me/Projects/myproject/vendor/' ],
            alias:
        { 'jquery-ui/ui/widget': '/home/me/Projects/myproject/node_modules/jquery-ui/widget.js' },
        extensions: [ '.jsx', '.js', '.less', '.css' ] },
    node: { __filename: true, __dirname: true, fs: 'empty' },
    amd: { jQuery: true },
    module:
    { rules:
        [ { enforce: 'pre',
            test: /\.jsx?$/,
            loader: 'eslint-loader',
            include: '/home/me/Projects/myproject/assets',
            options: { cache: false, quiet: true, failOnError: true } },
            { test: /\.jsx?$/,
                loader: 'strip-loader',
                options:
                    { strip:
                            [ 'console.assert',
                                'console.count',
                                'console.dir',
                                'console.dirxml',
                                'console.group',
                                'console.groupCollapsed',
                                'console.groupEnd',
                                'console.info',
                                'console.log',
                                'console.profile',
                                'console.profileEnd',
                                'console.table',
                                'console.time',
                                'console.timeEnd',
                                'console.timeStamp' ] } },
            { test: /\.less$/,
                use:
                    [ '/home/me/Projects/myproject/node_modules/mini-css-extract-plugin/dist/loader.js',
                        { loader: 'css-loader', options: [Object] },
                        { loader: 'postcss-loader', options: [Object] },
                        { loader: 'less-loader', options: [Object] } ] },
            { test: /\.css$/,
                use:
                    [ '/home/me/Projects/myproject/node_modules/mini-css-extract-plugin/dist/loader.js',
                        { loader: 'css-loader', options: [Object] },
                        { loader: 'postcss-loader', options: [Object] } ] },
            { test: /\.jsx?$/,
                include:
                    [ '/home/me/Projects/myproject/assets',
                        '/home/me/Projects/myproject/node_modules/react-ajax-loader' ],
                loader: 'babel-loader',
                options:
                    { cacheDirectory: '/home/me/Projects/myproject/cache/babel',
                        forceEnv: 'production' } },
            { test: /\.(jpe?g|png|gif|svg)($|\?)/i,
                loader: 'url-loader',
                options: { limit: 2048, name: '[name]-[sha1:hash:hex:10].[ext]' } },
            { test: /\.(eot|ttf|woff2?|htc)($|\?)/i,
                loader: 'file-loader',
                options: { name: '[name]-[sha1:hash:hex:10].[ext]' } } ] },
    plugins:
        [ NoEmitOnErrorsPlugin {},
            HashedModuleIdsPlugin {
            options:
                { context: null,
                    hashFunction: 'md4',
                    hashDigest: 'base64',
                    hashDigestLength: 4 } },
            LoaderOptionsPlugin { options: { options: {}, test: { test: [Function: test] } } },
    MiniCssExtractPlugin {
    options:
    { filename: '[name].[hash].css',
        chunkFilename: 'chunk.[chunkhash].css' } },
    ProvidePlugin {
    definitions:
    { '$': 'jquery',
        jQuery: 'jquery',
        timezoneJS: 'timezone-js',
        React: 'react',
        _: 'lodash' } },
    DefinePlugin {
    definitions: { 'process.env': { NODE_ENV: '"production"' } } },
    { apply: [Function: apply] } ],
    bail: true,
        devtool: 'source-map',
    optimization:
    { minimize: true,
        minimizer:
        [ UglifyJsPlugin {
            options:
                { test: /\.(js?)(\?.+)?$/i,
                    warningsFilter: [Function],
                    extractComments: /^!|\b(copyright|license)\b|@(preserve|license|cc_on)\b/i,
                    sourceMap: true,
                    cache: true,
                    parallel: true,
                    include: undefined,
                    exclude: /\.min\.js$/,
                    uglifyOptions:
                        { output: [Object],
                            compress: [Object],
                            mangle: true,
                            sourceMap: true } } } ],
            splitChunks: { chunks: 'all' },
        runtimeChunk: true } }

1.3.1 changed the hash,not sync with html-webpack-plugin

@scinos
the problem is here,when I update 1.3.1,my html hash was totally changed。

plugins: [
  new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'public/index.html',
      chunks: ['manifest', 'vendor', 'app']
    }),
   new WebpackPluginHashOutput()
]

then the output html hash has been changed。the reference script url is not right。

but as html-webpack-plugin said:

If you have plugins that make use of it, html-webpack-plugin should be ordered first before any of the integrated plugins.

I an confused here how to set the order here

Usage with devtool: "hidden-source-map"

Thanks for making this plugin!

It's co common to use devtool: "hidden-source-map" in production. However, the problem with this use case is this plugin doesn't rename the final source map filename to match the final chunk asset filename. Usually when mapping stack traces server-side, the assumption is the source map filename is always x.js.map where the associated js file is x.js.

For "hidden-source-map" usage, it would be nice if this plugin renamed the source map filename to match the final chunk asset name.

Perhaps this could be an option/config. Happy to work on a PR and tests for this if that makes sense to you.

mini-css-extract-plugin logic is broken

// This is a massive hack:

The code added for mini-css-extract doesn't appear to work.

For CSS, we have a problem; if the user configured mini-css-extract-plugin with [chunkhash] in the filename, we'll wind up with that same chunkhash in both the JS and CSS filename. When we do the global replace, it'll replace all instances of that chunkhash with either the JS or CSS content hash depending on the order this code runs. So one of them will always fail. @GoodForOneFare pointed this out in his original pr. I think we could just throw an error if more than one file contains chunk.renderedHash.

Using chunkhash with mini-css-extract-plugin appears to be wrong anyway, you're supposed to use contenthash. That's handled in the 'this is a massive hack' section, which looks for a module hash matching the one in the filename. But this breaks if the same CSS module is included in multiple chunks:

Supposed we have chunk A and B

A.files: [foo-abcd.css, ...]
B.files: [foo-abcd.css, ...]

On chunk A, we'll look for a module that has hash abcd. We find it and proceed normally, adding it to nameMap and updating the hash/renderedHash of the module itself. Now the module has hash hashed, and the asset is renamed to foo-hashed.css.

A.files: [foo-hashed.css, ...]
B.files: [foo-abcd.css, ...]

nameMap: { 'abcd': 'hashed' }

Now we're processing chunk B. We'll still be looking for a module hash 'abcd'. However, that module has been mutated when processing chunk A, so we never find it. As a result, chunk B and any following chunks will continue to emit their old chunk names. However, since the mapping from abcd -> hashed is in nameMap, we're rewriting all the runtime files to reference hashed, and this results in broken module loading.

I think the correct solution here is to look at chunk.contentHash; if any of the values there match the filename, we can use that as oldChunkName. This avoids mutating any modules.

Webpack 5 migration

Hey yo, good plugin owners!
Do you have any plans to upgrade this wonderful plugin to support Webpack 5? They've changed a few things like chunk.files is no longer an Array, but a Set. And a few other little things...

When used with source maps, webpack looks for a bundle hash that is actually the source map hash

When using this plugin with source maps, webpack makes requests for the bundle with a hash name suffix that is the hash of the source map file instead of the bundle's hash. This leads to 404 errors.

This is the relevant parts of my current configuration:

const assetsOutputFileName = `assets/[name].[chunkhash].${CACHE_BUSTING}.js`;

{
    output: {
        chunkFilename: assetsOutputFileName,
        sourceMapFilename: `${assetsOutputFileName}.map`
    }
    devtool: 'source-map'
    optimization {
        minimize: true,
        minimizer: [
            new UglifyJSPlugin({ sourceMap: true }),
        ]
    }
}

1.3.0 is blocking webpack building

my config is:

plugins: [
    new ExtractTextPlugin({
      filename: '[contenthash:22].css',
      allChunks: true
    }),
    new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'public/index.html',
      chunks: ['manifest', 'vendor', 'app']
    }),
    new webpack.optimize.CommonsChunkPlugin({
      name: 'vendor',
      minChunks: Infinity
    }),
    new webpack.optimize.CommonsChunkPlugin({
      name: 'manifest',
      minChunks: Infinity,
      filename: 'manifest.js'
    }),
    new webpack.optimize.CommonsChunkPlugin({
      async: 'async-common',
      children: true,
      // deepChildren: true,
      minChunks: 2
    }),
    new InlineChunkWebpackPlugin({
      inlineChunks: ['manifest']
    }),
    new webpack.HashedModuleIdsPlugin(),
    new WebpackPluginHashOutput()
  ]

if I run build process by webpack node api,It will be blocked。

nothing happend。

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.