Skip to content

Commit

Permalink
fix: failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Aug 16, 2021
1 parent 08bc9f2 commit 775ad5e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"oclif": "^1.18.1",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"typescript": "3.8.3"
"typescript": "^4.3.5"
},
"engines": {
"node": ">=8.0.0"
Expand All @@ -37,7 +37,7 @@
"license": "MIT",
"main": "./lib/help.js",
"oclif": {
"commands": "./lib/commands/",
"commands": "./lib/commands",
"bin": "oclif",
"devPlugins": [
"@oclif/plugin-plugins"
Expand All @@ -47,7 +47,7 @@
"scripts": {
"build": "shx rm -rf lib && tsc",
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "yarn build && tsc -p test --noEmit",
"pretest": "yarn build && tsc --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"prepack": "yarn run build && oclif-dev manifest",
Expand Down
10 changes: 3 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,11 @@
"module": "commonjs",
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./lib",
"outDir": "lib",
"pretty": true,
"rootDirs": [
"./src"
],
"rootDir": "src",
"strict": true,
"target": "es2017"
},
"include": [
"./src/**/*"
]
"include": ["./src/**/*.ts"]
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4862,10 +4862,10 @@ typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"

typescript@3.8.3:
version "3.8.3"
resolved "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061"
integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==
typescript@4.3.5:
version "4.3.5"
resolved "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==

union-value@^1.0.0:
version "1.0.1"
Expand Down

0 comments on commit 775ad5e

Please sign in to comment.