Skip to content

Commit

Permalink
feat: typescript 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Aug 17, 2018
1 parent 47cfe99 commit 08c44ba
Show file tree
Hide file tree
Showing 6 changed files with 154 additions and 170 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/test/issues",
"dependencies": {
"fancy-test": "^1.2.0"
"fancy-test": "^1.3.0"
},
"devDependencies": {
"@oclif/command": "^1.4.34",
"@oclif/config": "^1.6.33",
"@oclif/errors": "^1.1.2",
"@oclif/tslint": "^1.1.2",
"@oclif/command": "^1.5.0",
"@oclif/config": "^1.7.0",
"@oclif/errors": "^1.2.0",
"@oclif/tslint": "^2.0.0",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.3",
"@types/node": "^10.5.1",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"chai": "^4.1.2",
"globby": "^8.0.1",
"mocha": "^5.2.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "2.9.2"
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "3.0.1"
},
"engines": {
"node": ">=8.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/command.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as Config from '@oclif/config'

import {loadConfig} from './load_config'
import {loadConfig} from './load-config'

export function command(args: string[] | string | undefined, opts: loadConfig.Options = {}) {
return {
Expand Down
2 changes: 1 addition & 1 deletion src/hook.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as Config from '@oclif/config'

import {loadConfig} from './load_config'
import {loadConfig} from './load-config'

/**
* tests a oclif hook
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {expect, fancy, FancyTypes} from 'fancy-test'
import {command} from './command'
import exit from './exit'
import hook from './hook'
import {loadConfig} from './load_config'
import {loadConfig} from './load-config'

loadConfig.root = module.parent!.filename

Expand Down
File renamed without changes.
Loading

0 comments on commit 08c44ba

Please sign in to comment.