Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit c21f550

Browse files
Switch to using yarn to install packages. Updated dependencies.
1 parent 04be31a commit c21f550

File tree

3 files changed

+1390
-9
lines changed

3 files changed

+1390
-9
lines changed

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,19 @@
3737
"homepage": "https://developers.google.com/closure/compiler/",
3838
"dependencies": {
3939
"chalk": "^1.0.0",
40-
"vinyl": "^1.2.0",
40+
"vinyl": "^2.0.1",
4141
"vinyl-sourcemaps-apply": "^0.2.0"
4242
},
4343
"devDependencies": {
4444
"gulp": "^3.9.0",
45-
"gulp-mocha": "^2.2.0",
46-
"gulp-sourcemaps": "^1.6.0",
45+
"gulp-mocha": "^4.0.1",
46+
"gulp-sourcemaps": "^2.4.1",
4747
"lodash": "^4.6.1",
48-
"mocha": "^2.3.4",
48+
"mocha": "^3.2.0",
4949
"ncp": "^2.0.0",
5050
"semver": "^5.1.0",
51-
"should": "^8.2.2",
52-
"stream-assert": "^2.0.3",
53-
"vinyl": "^1.1.0"
51+
"should": "^11.2.0",
52+
"stream-assert": "^2.0.3"
5453
},
5554
"scripts": {
5655
"test": "mocha",

test/gulp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ describe('gulp-google-closure-compiler', function() {
142142
stream.pipe(assert.length(2))
143143
.pipe(assert.first(function (f) {
144144
f.contents.toString().trim().should.eql(fakeFile1.contents.toString());
145-
f.path.should.eql('./one.js');
145+
f.path.should.eql('one.js');
146146
}))
147147
.pipe(assert.second(function (f) {
148148
f.contents.toString().trim().should.eql(fakeFile2.contents.toString());
149-
f.path.should.eql('./two.js');
149+
f.path.should.eql('two.js');
150150
}))
151151
.pipe(assert.end(done));
152152

0 commit comments

Comments
 (0)