|
@@ -18,9 +18,10 @@
|
|
|
"nuke": "shx rm -rf packages/*/*/node_modules node_modules pnpm-lock.yaml || true",
|
|
"nuke": "shx rm -rf packages/*/*/node_modules node_modules pnpm-lock.yaml || true",
|
|
|
"reinstall": "pnpm run nuke && pnpm install",
|
|
"reinstall": "pnpm run nuke && pnpm install",
|
|
|
"clean": "pnpm --recursive run clean",
|
|
"clean": "pnpm --recursive run clean",
|
|
|
- "build": "tsc --build --verbose tsconfig.all.json",
|
|
|
|
|
|
|
+ "tsc": "tsc --build --verbose tsconfig.all.json",
|
|
|
"watch": "tsc --build --verbose --watch tsconfig.all.json",
|
|
"watch": "tsc --build --verbose --watch tsconfig.all.json",
|
|
|
- "release": "pnpm run clean && pnpm run build",
|
|
|
|
|
|
|
+ "build": "pnpm --recursive run build",
|
|
|
|
|
+ "release": "pnpm run clean && pnpm run tsc && pnpm run build",
|
|
|
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
|
|
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
|
|
|
"lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint .",
|
|
"lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint .",
|
|
|
"lint:fix": "pnpm run fmt && eslint --fix .",
|
|
"lint:fix": "pnpm run fmt && eslint --fix .",
|