Skip to content

Commit

Permalink
Merge pull request #146 from tschaub/updates
Browse files Browse the repository at this point in the history
Updates dependencies
  • Loading branch information
tschaub authored Nov 17, 2016
2 parents b7e8779 + f8a7f4c commit 33815e4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
language: node_js
node_js:
- "4"
- "6"

cache:
directories:
- node_modules

branches:
only:
Expand Down
3 changes: 1 addition & 2 deletions lib/git.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ exports.clone = function clone(repo, dir, branch, options) {
return Q.resolve();
} else {
return fs.makeTree(path.dirname(path.resolve(dir))).then(function() {
var args = ['clone', repo, dir, '--branch', branch, '--single-branch',
'--origin', options.remote];
var args = ['clone', repo, dir, '--branch', branch, '--single-branch', '--origin', options.remote];
if (options.depth) {
args.push('--depth', options.depth);
}
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@
"async": "2.1.2",
"commander": "2.9.0",
"globby": "^6.1.0",
"graceful-fs": "4.1.6",
"graceful-fs": "4.1.10",
"q": "1.4.1",
"q-io": "1.13.2",
"rimraf": "^2.5.2"
"rimraf": "^2.5.4"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "3.8.0",
"eslint-config-tschaub": "5.0.0",
"mocha": "^3.1.1"
"chai": "^3.5.0",
"eslint": "^3.10.2",
"eslint-config-tschaub": "^6.0.0",
"mocha": "^3.1.2"
},
"bin": {
"gh-pages": "bin/gh-pages"
Expand Down

0 comments on commit 33815e4

Please sign in to comment.