Skip to content

Commit ffc2ace

Browse files
committed
small fix for the executable
1 parent fef56db commit ffc2ace

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bin/convert-argv.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,8 @@ module.exports = function(optimist, argv, convertOptions) {
265265
}
266266
argv._.forEach(function(content) {
267267
var i = content.indexOf("=");
268-
if(i < 0) addTo("main", content);
268+
var j = content.indexOf("!");
269+
if(i < 0 || (j >= 0 && j < i)) addTo("main", content);
269270
else addTo(content.substr(0, i), content.substr(i+1))
270271
});
271272
}

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.9.0-beta29",
3+
"version": "0.9.0-beta30",
44
"author": "Tobias Koppers @sokra",
55
"description": "Packs CommonJs/AMD 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)