hard-source-webpack-plugin icon indicating copy to clipboard operation
hard-source-webpack-plugin copied to clipboard

Results 97 hard-source-webpack-plugin issues
Sort by recently updated
recently updated
newest added

### Expected Behavior Builds anew when encountering incomplete caches. ### Actual Behavior Try to use last complete cache.

refactor

Support all plugins and loaders under https://github.com/webpack. Support can be not caching but making sure builds are correct and complete or fail as expected. - `*` Resolution to this module...

I've got a build environment which creates "read-only filesystem" versions of pre-built output, and then runs the read only version in a container. Will hard source just error out and...

soon

Hello, I use `new webpack.DefinePlugin` to share variables between `webpack.config.js` and my TypeScript files. I shared also the `version` from `package.json` with the DefinePlugin. If I change now the version...

I'm seeing a bug using this plugin with webpack 3 `--watch`. When freezing an asset (for example, from `emitFile`) the value to be frozen is a string, so a non-JSON...

If I run webpack with HardSourcePlugin through gulp using webpack-stream ( https://github.com/shama/webpack-stream) , I don't see any errors. Just build failure. Without HardSourcePlugin the errors are displayed properly.

Hello, and first of, thanks to all the contributors for this awesome plugin. I've been using it together with the Relay Webpack Plugin, which is responsible for compiling relay queries...

I've been getting some errors that look like `EPERM: cannot rename cache/hard-source/somefile` when I try to build. It's a problem with the cache, but running `npm cache clean` doesn't delete...

My config ```ts new HardSourceWebpackPlugin({ cacheDirectory : isDevServer ? Helpers.root('./.cache/hard-source/dev/[confighash]') : isDebug ? Helpers.root('./.cache/hard-source/debug/[confighash]') : Helpers.root('./.cache/hard-source/prod/[confighash]'), recordsPath : isDevServer ? Helpers.root('./.cache/hard-source/dev/[confighash]/records.json') : isDebug ? Helpers.root('./.cache/hard-source/debug/[confighash]/records.json') : Helpers.root('./.cache/hard-source/prod/[confighash]/records.json'), configHash : require('node-object-hash')({...

This is probably related to #18 I keep getting seemingly random errors like this ``` Uncaught TypeError: Cannot read property 'call' of undefined at __webpack_require__ (commons.js:713) ``` When I either...