Skip to content

Commit

Permalink
chore(package): update shelljs to version 0.7.0 (conventional-changel…
Browse files Browse the repository at this point in the history
…og#25)

* chore(package): update shelljs to version 0.7.0

https://greenkeeper.io/

* use .stdout instead of .output from shell.exec()
  • Loading branch information
nexdrew authored and bcoe committed Apr 26, 2016
1 parent 5600572 commit d20f36e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"coveralls": "^2.11.9",
"mocha": "^2.4.5",
"nyc": "^6.2.1",
"shelljs": "^0.6.0",
"shelljs": "^0.7.0",
"standard": "^6.0.8"
}
}
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('cli', function () {
var content = fs.readFileSync('CHANGELOG.md', 'utf-8')
content.should.match(/patch release/)
content.should.match(/first commit/)
shell.exec('git tag').output.should.match(/1\.0\.1/)
shell.exec('git tag').stdout.should.match(/1\.0\.1/)
})
})

Expand Down

0 comments on commit d20f36e

Please sign in to comment.