Skip to content

Commit 19df29c

Browse files
committed
fix: workflow issue
1 parent dd3c24e commit 19df29c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888
"prepack-bkp": "npm run build && oclif manifest && oclif readme",
8989
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
9090
"version": "oclif readme && git add README.md",
91-
"build": "npm run clean && npm run compile",
92-
"clean": "rm -rf ./dist ./node_modules tsconfig.build.tsbuildinfo",
91+
"build": "npm run clean && shx rm -rf lib && tsc -b",
92+
"clean": "rm -rf ./lib tsconfig.tsbuildinfo oclif.manifest.json",
9393
"compile": "tsc -b tsconfig.json",
9494
"prepack": "npm run build && oclif manifest && oclif readme",
9595
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\"",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"declaration": true,
44
"importHelpers": true,
55
"module": "commonjs",
6-
"outDir": "dist",
6+
"outDir": "lib",
77
"rootDir": "src",
88
"strict": true,
99
"target": "es2017",

0 commit comments

Comments
 (0)