Skip to content

Commit

Permalink
chore(package): update dependencies
Browse files Browse the repository at this point in the history
- fixed lint errors
  • Loading branch information
toddbluhm committed Dec 29, 2019
1 parent d15248b commit fda2518
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
## 10.1.0 - Pending

- **Feature**: Added a new `--verbose` flag that prints additional debugging info to `console.info`
- **Change**: Updated `commander` dependency to `v4`
- **Feature**: Added support for expanding vars using the `-x` flag.
Note: only supports for `$var` syntax
- **Upgrade**: Updated `commander` dependency to `v4`
- **Upgrade**: Updated `sinon` and `nyc` dev dependencies

## 10.0.1

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
"chai": "^4.0.0",
"coveralls": "^3.0.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"sinon": "^7.0.0",
"nyc": "^15.0.0",
"sinon": "^8.0.0",
"ts-node": "^8.0.0",
"ts-standard": "^3.0.0",
"typescript": "^3.7.0"
Expand Down
5 changes: 4 additions & 1 deletion test/env-cmd.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ describe('EnvCmd', (): void => {
before((): void => {
getEnvVarsStub = sinon.stub(getEnvVarsLib, 'getEnvVars')
spawnStub = sinon.stub(spawnLib, 'spawn')
spawnStub.returns({ on: (): void => {}, kill: (): void => {} })
spawnStub.returns({
on: (): void => { /* Fake the on method */ },
kill: (): void => { /* Fake the kill method */ }
})
expandEnvsSpy = sinon.spy(expandEnvsLib, 'expandEnvs')
})

Expand Down

0 comments on commit fda2518

Please sign in to comment.