This commit is contained in:
adueck 2024-08-12 15:51:31 -04:00
parent b4bee62036
commit 42f3552b80
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
[build]
command = "yarn install-all && yarn test --silent && yarn build-website"
publish = "build/"
publish = "dist/"

View File

@ -12,7 +12,7 @@
"lint": "eslint .",
"test": "jest",
"preview": "vite preview",
"install-all": "yarn install && node get-words.cjs $$ cd src/lib && yarn install && cd ../components && yarn install",
"install-all": "yarn install && node get-words.cjs && cd src/lib && yarn install && cd ../components && yarn install",
"build-website": "tsc -b && vite build",
"build-components": "rm -rf src/components/dist && tsc --project src/components/tsconfig.json && cd src/components && node post-build.cjs",
"build-lib": "rm -rf src/lib/dist && tsc --project src/lib/tsconfig.json",