Skip to content

Commit 1a83625

Browse files
committed
fixed annoying catch
1 parent 392c6db commit 1a83625

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

lib/HotModuleReplacementPlugin.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,8 @@ var hotInitCode = function() {
213213
$require$.e(chunkId, function() {
214214
try {
215215
callback.call(null, fn);
216-
} catch(e) {
216+
} finally {
217217
finishChunkLoading();
218-
throw e;
219218
}
220219
finishChunkLoading();
221220
function finishChunkLoading() {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack",
3-
"version": "0.11.0-beta20",
3+
"version": "0.11.0-beta21",
44
"author": "Tobias Koppers @sokra",
55
"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.",
66
"dependencies": {

0 commit comments

Comments
 (0)