mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
Backport 58dddfd80d
This commit is contained in:
parent
19a2eb963a
commit
026455c4e7
@ -19,7 +19,7 @@ module.exports = {
|
|||||||
debug: true,
|
debug: true,
|
||||||
devtool: false,
|
devtool: false,
|
||||||
entry: [
|
entry: [
|
||||||
'webpack/hot/dev-server',
|
'webpack/hot/only-dev-server',
|
||||||
'./src/scripts/components/<%= pkg.mainInput %>.jsx'
|
'./src/scripts/components/<%= pkg.mainInput %>.jsx'
|
||||||
],
|
],
|
||||||
|
|
||||||
@ -52,7 +52,8 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
new webpack.HotModuleReplacementPlugin()
|
new webpack.HotModuleReplacementPlugin(),
|
||||||
|
new webpack.NoErrorsPlugin()
|
||||||
]
|
]
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -101,7 +101,8 @@ describe('react-webpack generator', function() {
|
|||||||
['Gruntfile.js', /hot:\s*true/],
|
['Gruntfile.js', /hot:\s*true/],
|
||||||
['webpack.config.js', /react-hot/],
|
['webpack.config.js', /react-hot/],
|
||||||
['webpack.config.js', /webpack\.HotModuleReplacementPlugin/],
|
['webpack.config.js', /webpack\.HotModuleReplacementPlugin/],
|
||||||
['webpack.config.js', /webpack\/hot\/dev-server/]
|
['webpack.config.js', /webpack\.NoErrorsPlugin/],
|
||||||
|
['webpack.config.js', /webpack\/hot\/only-dev-server/]
|
||||||
]);
|
]);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user