Skip to content

Commit b264620

Browse files
committed
updated dependencies
1 parent f850771 commit b264620

8 files changed

Lines changed: 39 additions & 3689 deletions

File tree

bin/config-optimist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module.exports = function(optimist) {
4949

5050
.boolean("hot").alias("hot", "h").describe("hot")
5151

52-
.boolean("debug").alias("debug", "d").describe("debug")
52+
.boolean("debug").describe("debug")
5353

5454
.string("devtool").describe("devtool")
5555

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "webpack",
3-
"version": "0.11.0-beta27",
3+
"version": "0.11.0-beta28",
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": {
77
"esprima": "1.0.x",
88
"mkdirp": "0.3.x",
9-
"optimist": "0.5.x",
10-
"uglify-js": "2.3.x",
9+
"optimist": "0.6.x",
10+
"uglify-js": "2.4.x",
1111
"async": "0.2.x",
1212
"enhanced-resolve": "0.5.x",
1313
"clone": "0.1.x",
@@ -23,10 +23,10 @@
2323
}
2424
],
2525
"devDependencies": {
26-
"mocha": "1.10.x",
27-
"should": "1.2.x",
26+
"mocha": "1.13.x",
27+
"should": "2.0.x",
2828
"vm-browserify": "0.0.x",
29-
"express": "3.2.x",
29+
"express": "3.4.x",
3030
"webpack-dev-middleware": "0.11.x",
3131
"worker-loader": "0.5.x",
3232
"raw-loader": "0.5.x",
@@ -35,12 +35,12 @@
3535
"coffee-loader": "0.6.x",
3636
"css-loader": "0.6.x",
3737
"less-loader": "0.5.x",
38-
"style-loader": "0.5.x",
38+
"style-loader": "0.6.x",
3939
"script-loader": "0.5.x",
4040
"bundle-loader": "0.5.x",
4141
"file-loader": "0.5.x",
4242
"val-loader": "0.5.x",
43-
"i18n-webpack-plugin": "0.1.x",
43+
"i18n-webpack-plugin": "0.2.x",
4444
"component-webpack-plugin": "0.1.x"
4545
},
4646
"engines": {

test/Compiler.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe("Compiler", function() {
5757
}
5858
it("should compile a single file", function(done) {
5959
compile("./c", {}, function(stats, files) {
60-
files.should.have.property("bundle.js").be.a("string");
60+
files.should.have.property("bundle.js").have.type("string");
6161
Object.keys(files).should.be.eql(["bundle.js"]);
6262
var bundle = files["bundle.js"];
6363
bundle.should.include("function require(");
@@ -75,7 +75,7 @@ describe("Compiler", function() {
7575
});
7676
it("should compile a complex file", function(done) {
7777
compile("./main1", {}, function(stats, files) {
78-
files.should.have.property("bundle.js").be.a("string");
78+
files.should.have.property("bundle.js").have.type("string");
7979
Object.keys(files).should.be.eql(["bundle.js"]);
8080
var bundle = files["bundle.js"];
8181
bundle.should.include("function require(");
@@ -96,7 +96,7 @@ describe("Compiler", function() {
9696
});
9797
it("should compile a file with transitive dependencies", function(done) {
9898
compile("./abc", {}, function(stats, files) {
99-
files.should.have.property("bundle.js").be.a("string");
99+
files.should.have.property("bundle.js").have.type("string");
100100
Object.keys(files).should.be.eql(["bundle.js"]);
101101
var bundle = files["bundle.js"];
102102
bundle.should.include("function require(");
@@ -120,8 +120,8 @@ describe("Compiler", function() {
120120
it("should compile a file with multiple chunks", function(done) {
121121
compile("./chunks", {}, function(stats, files) {
122122
stats.chunks.length.should.be.eql(2);
123-
files.should.have.property("bundle.js").be.a("string");
124-
files.should.have.property("1.bundle.js").be.a("string");
123+
files.should.have.property("bundle.js").have.type("string");
124+
files.should.have.property("1.bundle.js").have.type("string");
125125
Object.keys(files).should.be.eql(["bundle.js", "1.bundle.js"]);
126126
var bundle = files["bundle.js"];
127127
var chunk = files["1.bundle.js"];

test/NodeWatchFileSystem.test.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe("NodeWatchFileSystem", function() {
2222
if(err) throw err;
2323
filesModified.should.be.eql([fileDirect]);
2424
dirsModified.should.be.eql([]);
25-
fileTimestamps.should.have.property(fileDirect).be.a("number");
25+
fileTimestamps.should.have.property(fileDirect).have.type("number");
2626
dirTimestamps.should.be.eql({});
2727
done();
2828
});
@@ -38,7 +38,7 @@ describe("NodeWatchFileSystem", function() {
3838
if(err) throw err;
3939
filesModified.should.be.eql([fileDirect]);
4040
dirsModified.should.be.eql([]);
41-
fileTimestamps.should.have.property(fileDirect).be.a("number");
41+
fileTimestamps.should.have.property(fileDirect).have.type("number");
4242
dirTimestamps.should.be.eql({});
4343
done();
4444
});
@@ -53,7 +53,7 @@ describe("NodeWatchFileSystem", function() {
5353
filesModified.should.be.eql([]);
5454
dirsModified.should.be.eql([fixtures]);
5555
fileTimestamps.should.be.eql({});
56-
dirTimestamps.should.have.property(fixtures).be.a("number");
56+
dirTimestamps.should.have.property(fixtures).have.type("number");
5757
done();
5858
});
5959

@@ -69,7 +69,7 @@ describe("NodeWatchFileSystem", function() {
6969
filesModified.should.be.eql([]);
7070
dirsModified.should.be.eql([fixtures]);
7171
fileTimestamps.should.be.eql({});
72-
dirTimestamps.should.have.property(fixtures).be.a("number");
72+
dirTimestamps.should.have.property(fixtures).have.type("number");
7373
done();
7474
});
7575
}, 500);
@@ -83,7 +83,7 @@ describe("NodeWatchFileSystem", function() {
8383
filesModified.should.be.eql([]);
8484
dirsModified.should.be.eql([fixtures]);
8585
fileTimestamps.should.be.eql({});
86-
dirTimestamps.should.have.property(fixtures).be.a("number");
86+
dirTimestamps.should.have.property(fixtures).have.type("number");
8787
done();
8888
});
8989

@@ -99,7 +99,7 @@ describe("NodeWatchFileSystem", function() {
9999
filesModified.should.be.eql([]);
100100
dirsModified.should.be.eql([fixtures]);
101101
fileTimestamps.should.be.eql({});
102-
dirTimestamps.should.have.property(fixtures).be.a("number");
102+
dirTimestamps.should.have.property(fixtures).have.type("number");
103103
done();
104104
});
105105
}, 500);
@@ -113,9 +113,9 @@ describe("NodeWatchFileSystem", function() {
113113
if(err) throw err;
114114
filesModified.should.be.eql([fileSubdir, fileDirect]);
115115
dirsModified.should.be.eql([fixtures]);
116-
fileTimestamps.should.have.property(fileDirect).be.a("number");
117-
fileTimestamps.should.have.property(fileSubdir).be.a("number");
118-
dirTimestamps.should.have.property(fixtures).be.a("number");
116+
fileTimestamps.should.have.property(fileDirect).have.type("number");
117+
fileTimestamps.should.have.property(fileSubdir).have.type("number");
118+
dirTimestamps.should.have.property(fixtures).have.type("number");
119119
done();
120120
});
121121
}, 500);
@@ -129,9 +129,9 @@ describe("NodeWatchFileSystem", function() {
129129
if(err) throw err;
130130
filesModified.should.be.eql([fileSubdir, fileDirect]);
131131
dirsModified.should.be.eql([fixtures]);
132-
fileTimestamps.should.have.property(fileDirect).be.a("number");
133-
fileTimestamps.should.have.property(fileSubdir).be.a("number");
134-
dirTimestamps.should.have.property(fixtures).be.a("number");
132+
fileTimestamps.should.have.property(fileDirect).have.type("number");
133+
fileTimestamps.should.have.property(fileSubdir).have.type("number");
134+
dirTimestamps.should.have.property(fixtures).have.type("number");
135135
done();
136136
});
137137

0 commit comments

Comments
 (0)