Skip to content

Commit 21dc394

Browse files
authored
chore: upgrade dep
1 parent 41e196f commit 21dc394

File tree

5 files changed

+1296
-293
lines changed

5 files changed

+1296
-293
lines changed

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,39 +8,39 @@
88
"@heroku-cli/color": "^1.1.14",
99
"@oclif/errors": "^1.2.2",
1010
"cli-ux": "^4.9.3",
11-
"debug": "^4.1.0",
11+
"debug": "^4.1.1",
1212
"fs-extra": "^7.0.1",
13-
"heroku-client": "^3.0.6",
14-
"http-call": "^5.2.2",
13+
"heroku-client": "^3.0.7",
14+
"http-call": "^5.2.3",
1515
"netrc-parser": "^3.1.6",
1616
"opn": "^5.4.0"
1717
},
1818
"devDependencies": {
19-
"@heroku-cli/schema": "^1.0.23",
19+
"@heroku-cli/schema": "^1.0.25",
2020
"@heroku-cli/tslint": "^1.1.4",
21-
"@oclif/command": "^1.5.6",
22-
"@oclif/config": "^1.9.0",
21+
"@oclif/command": "^1.5.11",
22+
"@oclif/config": "^1.12.8",
2323
"@oclif/tslint": "^3.1.1",
2424
"@types/ansi-styles": "^3.2.1",
2525
"@types/chai": "^4.1.7",
26-
"@types/fs-extra": "^5.0.4",
27-
"@types/mocha": "^5.2.5",
28-
"@types/nock": "^9.3.0",
29-
"@types/node": "^10.12.12",
26+
"@types/fs-extra": "^5.0.5",
27+
"@types/mocha": "^5.2.6",
28+
"@types/nock": "^9.3.1",
29+
"@types/node": "^11.9.5",
3030
"@types/opn": "^5.1.0",
3131
"@types/proxyquire": "^1.3.28",
32-
"@types/sinon": "^5.0.7",
32+
"@types/sinon": "^7.0.8",
3333
"@types/supports-color": "^5.3.0",
3434
"chai": "^4.2.0",
35-
"fancy-test": "^1.4.1",
36-
"mocha": "^5.2.0",
37-
"nock": "^10.0.3",
35+
"fancy-test": "^1.4.3",
36+
"mocha": "^6.0.2",
37+
"nock": "^10.0.6",
3838
"proxyquire": "^2.1.0",
39-
"sinon": "^7.1.1",
40-
"testdouble": "^3.9.1",
41-
"ts-node": "^7.0.1",
42-
"tslint": "^5.11.0",
43-
"typescript": "^3.2.1"
39+
"sinon": "^7.2.5",
40+
"testdouble": "^3.11.0",
41+
"ts-node": "^8.0.2",
42+
"tslint": "^5.13.0",
43+
"typescript": "^3.3.3333"
4444
},
4545
"engines": {
4646
"node": ">=6.0.0"

src/deps.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ import CLI = require('cli-ux')
33
import HTTP = require('http-call')
44
import netrc = require('netrc-parser')
55

6-
// local
76
import apiClient = require('./api-client')
87
import file = require('./file')
8+
import flags = require('./flags')
99
import git = require('./git')
1010
import mutex = require('./mutex')
1111
import yubikey = require('./yubikey')
1212

13-
import flags = require('./flags')
14-
1513
export const deps = {
1614
// remote
1715
get cli(): typeof CLI.default { return fetch('cli-ux').default },

test/flags/app.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ import {expect, fancy} from 'fancy-test'
33
import nock from 'nock'
44

55
import {Command as Base} from '../../src'
6-
import {Git} from '../../src/git'
7-
86
import * as flags from '../../src/flags'
7+
import {Git} from '../../src/git'
98

109
let api: nock.Scope
1110
let origRemotes = Object.getOwnPropertyDescriptor(Git.prototype, 'remotes')

test/git.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import {expect, fancy} from 'fancy-test'
2-
31
import childProcess from 'child_process'
2+
import {expect, fancy} from 'fancy-test'
43

54
import {Git} from '../src/git'
65

0 commit comments

Comments
 (0)