Skip to content

Commit 6274903

Browse files
committed
fixed mistake
1 parent 70b4713 commit 6274903

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/convert-argv.js

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

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-beta34",
3+
"version": "0.9.0-beta35",
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)