Skip to content

Commit

Permalink
fix: yarn doctor was here
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Jul 5, 2021
1 parent d2b786c commit dcf3553
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/config/package.json
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"prebuild": "yarn ts maintenance/prebuild.ts",
"build": "tsc -b tsconfig.build.json",
"build": "yarn prebuild && tsc -b tsconfig.build.json && yarn postbuild",
"postbuild": "yarn esm2cjs --in=build/esm --out=build/cjs -l error",
"clean": "tsc -b tsconfig.build.json --clean",
"watch": "yarn run build --watch --pretty",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Expand Up @@ -39,7 +39,7 @@
"node": ">=v12.22.2"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build": "tsc -b tsconfig.build.json && yarn postbuild",
"postbuild": "yarn esm2cjs --in=build/esm --out=build/cjs -l error",
"clean": "yarn run build --clean",
"watch": "yarn run build --watch --pretty"
Expand Down
2 changes: 1 addition & 1 deletion packages/maintenance/package.json
Expand Up @@ -40,7 +40,7 @@
"@zwave-js/shared": "7.7.3"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build": "tsc -b tsconfig.build.json && yarn postbuild",
"postbuild": "yarn esm2cjs --in=build/esm --out=build/cjs -l error",
"clean": "yarn run build --clean",
"watch": "yarn run build --watch --pretty"
Expand Down
2 changes: 1 addition & 1 deletion packages/serial/package.json
Expand Up @@ -39,7 +39,7 @@
"node": ">=v12.22.2"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build": "tsc -b tsconfig.build.json && yarn postbuild",
"postbuild": "yarn esm2cjs --in=build/esm --out=build/cjs -l error",
"clean": "yarn run build --clean",
"watch": "yarn run build --watch --pretty"
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Expand Up @@ -43,7 +43,7 @@
"fs-extra": "^10.0.0"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build": "tsc -b tsconfig.build.json && yarn postbuild",
"postbuild": "yarn esm2cjs --in=build/esm --out=build/cjs -l error",
"clean": "yarn run build --clean",
"watch": "yarn run build --watch --pretty"
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/package.json
Expand Up @@ -40,7 +40,7 @@
"@zwave-js/shared": "7.7.3"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build": "tsc -b tsconfig.build.json && yarn postbuild",
"postbuild": "yarn esm2cjs --in=build/esm --out=build/cjs -l error",
"clean": "yarn run build --clean",
"watch": "yarn run build --watch --pretty"
Expand Down
4 changes: 2 additions & 2 deletions packages/zwave-js/package.json
Expand Up @@ -56,11 +56,11 @@
"b": "yarn ts maintenance/_build.ts",
"deprecated": "node -p '\"\\n \\n \\033[31;1;4mThe \\\"build:full\\\" script has been deprecated. Use \\\"build\\\" instead!\\033[0m\\n \\n\"'",
"build_full": "yarn run deprecated && yarn run build",
"build": "tsc -b tsconfig.build.json",
"build": "tsc -b tsconfig.build.json && yarn postbuild",
"postbuild": "esm2cjs --in=build/esm --out=build/cjs -l error",
"clean": "tsc -b tsconfig.build.json --clean",
"prewatch": "yarn b prebuild",
"watch": "tsc -b tsconfig.build.json --watch --pretty",
"watch": "yarn prewatch && tsc -b tsconfig.build.json --watch --pretty",
"lint_zwave": "yarn b lint",
"ts": "node -r esbuild-register"
},
Expand Down

0 comments on commit dcf3553

Please sign in to comment.