fix: pkg
Some checks failed
ci / build (pull_request) Failing after 24s
ci / publish (pull_request) Has been skipped
ci / publish-docs (pull_request) Has been skipped

Added unit test cmd
This commit is contained in:
Matthew McPeak 2026-06-12 09:20:38 -04:00
parent 0170c6666a
commit 718073ec51
Signed by: McPeakML
GPG key ID: 3D64A2E70F58D07C
2 changed files with 3 additions and 1 deletions

View file

@ -38,6 +38,7 @@
"build:dev": "cd packages/library && bun run build ",
"build": "cd packages/library && bun run build && cd ../playground && bun run build",
"preview": "cd packages/playground && bun run preview",
"test:unit": "cd packages/library && bun run test:unit",
"type-check": "vue-tsc --build",
"lint": "eslint packages/*/src --fix",
"format": "prettier --write --experimental-cli packages/*/src",

View file

@ -27,7 +27,8 @@
],
"scripts": {
"build": "vite build",
"test:unit": "vitest"
"test:unit": "vitest run",
"test:unit:watch": "vitest"
},
"peerDependencies": {
"vue": "^3.5.0",