Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Escalante committed May 10, 2016
1 parent 61b366b commit 3b5c665
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
"argparse": "^1.0.2",
"ejs": "^2.3.1",
"isbinaryfile": "^3.0.0",
"joi": "^8.0.5",
"joi": "^8.1.0",
"js-yaml": "^3.4.5",
"lodash": "^4.11.0",
"lodash": "^4.12.0",
"minimatch": "^3.0.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"readdirp": "^2.0.0",
"rimraf": "^2.5.2",
"underscore.string": "^3.1.1",
"when": "^3.7.7",
"which": "^1.1.1"
"which": "^1.2.8"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.0.0",
Expand All @@ -35,12 +35,12 @@
"istanbul": "^0.4.1",
"jsdoc": "^3.3.1",
"mocha": "^2.2.5",
"mockery": "^1.4.0",
"mockery": "^1.7.0",
"snazzy": "^4.0.0",
"standard": "^7.0.0"
"standard": "^7.0.1"
},
"engines": {
"node": ">=0.10.0"
"node": ">=4.0.0"
},
"homepage": "https://github.com/carrot/sprout",
"keywords": [
Expand Down
10 changes: 2 additions & 8 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1426,12 +1426,6 @@ describe('template',

describe('update',
function () {
var updateTemplateFixturesPath

before(function () {
updateTemplateFixturesPath = path.join(templateFixturesPath, 'update')
})

it('should update',
function (done) {
var name = 'update'
Expand Down Expand Up @@ -1932,7 +1926,7 @@ describe('utils',
return utils.target.write('nested/deep/foo', 'bar').then(
function (output) {
fs.readFileSync(path.join(fixture, 'nested', 'deep', 'foo'), 'utf8').should.eq('bar')
rimraf(path.join(fixture, 'nested')).then(_ => done())
rimraf(path.join(fixture, 'nested')).then(() => done())
}
)
}
Expand All @@ -1945,7 +1939,7 @@ describe('utils',
return utils.target.write('nested/deep/foo', 'bar').then(
function (output) {
fs.readFileSync(path.join(fixture, 'nested', 'deep', 'foo'), 'utf8').should.eq('bar')
rimraf(path.join(fixture, 'nested', 'deep')).then(_ => done())
rimraf(path.join(fixture, 'nested', 'deep')).then(() => done())
}
)
}
Expand Down

0 comments on commit 3b5c665

Please sign in to comment.