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

Commit 025e143

Browse files
Merge pull request #58 from ChadKillingsworth/yarn
Switch to using yarn to install packages
2 parents 4b3a6dd + f3dfe7f commit 025e143

File tree

4 files changed

+1392
-11
lines changed

4 files changed

+1392
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: node_js
22
node_js:
33
- '7'
44
- '6'
5-
- '0.12'
5+
- '4'
66
branches:
77
only:
88
- master

package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,25 @@
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",
5756
"pretest": "./build_compiler.js"
5857
},
5958
"engines": {
60-
"node": ">=0.12.0"
59+
"node": ">=4"
6160
}
6261
}

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)