Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
feat: typescript 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Aug 17, 2018
1 parent 3b98231 commit df5ef71
Show file tree
Hide file tree
Showing 6 changed files with 189 additions and 196 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,39 +8,39 @@
},
"bugs": "https://github.com/oclif/dev-cli/issues",
"dependencies": {
"@oclif/command": "^1.4.33",
"@oclif/command": "^1.4.36",
"@oclif/config": "^1.6.33",
"@oclif/errors": "^1.1.2",
"@oclif/plugin-help": "^2.0.5",
"cli-ux": "^4.7.2",
"cli-ux": "^4.7.3",
"debug": "^3.1.0",
"fs-extra": "^6.0.1",
"fs-extra": "^7.0.0",
"lodash": "^4.17.10",
"normalize-package-data": "^2.4.0",
"qqjs": "^0.3.10",
"tslib": "^1.9.2"
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/plugin-legacy": "^1.0.16",
"@oclif/plugin-legacy": "^1.0.18",
"@oclif/test": "^1.1.0",
"@oclif/tslint": "^1.1.2",
"@oclif/tslint": "^2.0.0",
"@types/chai": "^4.1.4",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.3",
"@types/globby": "^6.1.0",
"@types/lodash": "^4.14.110",
"@types/lodash.template": "^4.4.3",
"@types/mocha": "^5.2.2",
"@types/node": "^10.3.4",
"@types/fs-extra": "^5.0.4",
"@types/globby": "^8.0.0",
"@types/lodash": "^4.14.116",
"@types/lodash.template": "^4.4.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"@types/supports-color": "^5.3.0",
"@types/write-json-file": "^2.2.1",
"aws-sdk": "^2.259.1",
"aws-sdk": "^2.295.0",
"chai": "^4.1.2",
"globby": "^8.0.1",
"mocha": "^5.2.0",
"ts-node": "^6.1.1",
"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 test/deb.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('publish:deb', () => {
qq.cd(root)
})
afterEach(async () => {
qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
await qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
qq.cd([__dirname, '..'])
pjson.version = originalVersion
await qq.writeJSON(pjsonPath, pjson)
Expand Down
2 changes: 1 addition & 1 deletion test/macos.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('publish:macos', () => {
qq.cd(root)
})
afterEach(async () => {
qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
await qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
qq.cd([__dirname, '..'])
pjson.version = originalVersion
await qq.writeJSON(pjsonPath, pjson)
Expand Down
2 changes: 1 addition & 1 deletion test/publist.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('publish', () => {
qq.cd(root)
})
afterEach(async () => {
qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
await qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
qq.cd([__dirname, '..'])
pjson.version = originalVersion
await qq.writeJSON(pjsonPath, pjson)
Expand Down
2 changes: 1 addition & 1 deletion test/win.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('publish:win', () => {
qq.cd(root)
})
afterEach(async () => {
qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
await qq.x(`aws s3 rm --recursive s3://oclif/dev-cli/channels/${testRun}`)
qq.cd([__dirname, '..'])
pjson.version = originalVersion
await qq.writeJSON(pjsonPath, pjson)
Expand Down
Loading

0 comments on commit df5ef71

Please sign in to comment.