fix: run prebuild before test

Signed-off-by: Innei <i@innei.in>
This commit is contained in:
Innei
2023-12-18 21:34:02 +08:00
parent 58c7f02caf
commit 1ce1824ef0
3 changed files with 27 additions and 3 deletions

View File

@@ -26,7 +26,7 @@
"build": "pnpm run build:external && pnpm -C \"apps/core\" run build",
"dev": "pnpm run build:external && pnpm -C \"apps/core\" run start",
"bundle": "pnpm run build:external && pnpm -C \"apps/core\" run bundle",
"test": "pnpm -C \"apps/core\" run test",
"test": "pnpm run build:external && pnpm -C \"apps/core\" run test",
"lint": "eslint --cache --ext .ts,.tsx --ignore-path .gitignore . --fix",
"publish:core": "cd apps/core && npm run publish"
},