From 42f3552b80569dc3a45d5924fa341eb56dc20f34 Mon Sep 17 00:00:00 2001 From: adueck Date: Mon, 12 Aug 2024 15:51:31 -0400 Subject: [PATCH] oops --- netlify.toml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/netlify.toml b/netlify.toml index 3cc7c0a..468f3a4 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,3 @@ [build] command = "yarn install-all && yarn test --silent && yarn build-website" - publish = "build/" + publish = "dist/" diff --git a/package.json b/package.json index 45cffea..17a9bdd 100644 --- a/package.json +++ b/package.json @@ -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",