mirror of https://github.com/webpack/webpack.git
exit the process without waiting for caches
This commit is contained in:
parent
795dd91488
commit
ff007b3a27
|
@ -106,4 +106,6 @@ webpack(options, function(err, stats) {
|
|||
else {
|
||||
console.log(stats.toString(outputOptions));
|
||||
}
|
||||
// Do not keep cache anymore
|
||||
process.exit();
|
||||
});
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webpack",
|
||||
"version": "0.11.0-beta23",
|
||||
"version": "0.11.0-beta24",
|
||||
"author": "Tobias Koppers @sokra",
|
||||
"description": "Packs CommonJs/AMD/Labeled Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.",
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in New Issue