Skip to content

Commit

Permalink
update dependencies and devDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnn committed Aug 23, 2015
1 parent 65a0350 commit 473d4ec
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
3 changes: 1 addition & 2 deletions index.js
Expand Up @@ -48,7 +48,6 @@ module.exports = function gulpGhPages(options) {

files.push(file);
cb(null, file);

},
flush: function publish(cb) {
if (files.length === 0) {
Expand Down Expand Up @@ -112,7 +111,7 @@ module.exports = function gulpGhPages(options) {
return wrapPromise(function(resolve, reject) {
var destStream = vinylFs.dest(repo._repo.path)
.on('error', reject)
.on('end', function() {
.on('finish', function() {
resolve(repo);
});

Expand Down
28 changes: 14 additions & 14 deletions package.json
Expand Up @@ -29,31 +29,31 @@
"lib"
],
"scripts": {
"pretest": "eslint --config node_modules/@shinnn/eslintrc-node/rc.json --env mocha --rule 'no-underscore-dangle: 0' --rule 'camelcase: 0' index.js test.js lib",
"test": "mocha test.js --timeout 50000",
"test-only": "mocha test.js --timeout 50000",
"pretest": "eslint --config @shinnn/node-legacy --env mocha --rule 'no-underscore-dangle: 0' --rule 'camelcase: 0' index.js test.js lib",
"test": "mocha test.js --timeout 50000 --full-trace",
"test-only": "mocha test.js --timeout 50000 --full-trace",
"coverage": "istanbul cover _mocha test.js -x=test.js -- --timeout 50000",
"coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls"
},
"dependencies": {
"gift": "^0.6.0",
"gift": "^0.6.1",
"gulp-util": "^3.0.6",
"readable-stream": "^2.0.1",
"rimraf": "^2.4.1",
"vinyl-fs": "^1.0.0",
"readable-stream": "^2.0.2",
"rimraf": "^2.4.3",
"vinyl-fs": "^2.1.1",
"wrap-promise": "^1.0.1"
},
"devDependencies": {
"@shinnn/eslintrc-node": "^1.0.2",
"eslint": "^0.24.0",
"@shinnn/eslint-config-node-legacy": "^1.0.0",
"eslint": "^1.6.0",
"graceful-fs": "^4.1.2",
"istanbul": "^0.3.17",
"istanbul": "^0.3.22",
"istanbul-coveralls": "^1.0.3",
"log-symbols": "^1.0.2",
"mocha": "^2.2.5",
"mocha": "^2.3.3",
"node-uuid": "^1.4.3",
"octonode": "^0.6.18",
"read-remove-file": "^2.0.0",
"vinyl": "^0.5.0"
"octonode": "^0.7.3",
"read-remove-file": "^3.0.0",
"vinyl": "^1.0.0"
}
}
1 change: 0 additions & 1 deletion test.js
Expand Up @@ -46,7 +46,6 @@ before(function(done) {
client = github.client(accessToken);
remoteUrl = 'https://' + accessToken + '@github.com/' + tmpRepoName + '.git';
done();

} else {
var accessTokenFile = 'gh-access-token.txt';

Expand Down

0 comments on commit 473d4ec

Please sign in to comment.