From 1813363d077d4e83d701a9afb52437e7fa3ccb43 Mon Sep 17 00:00:00 2001 From: sargon64 Date: Sat, 12 Aug 2023 20:22:00 -0700 Subject: [PATCH] fix: put docker:build in correct package.json --- apps/web/package.json | 1 + package.json | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/package.json b/apps/web/package.json index 1de2180..d7ac4b1 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -5,6 +5,7 @@ "dev": "vite dev --port 3000", "build": "vite build", "preview": "vite preview", + "run": "vite build && node build", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "lint": "prettier --plugin-search-dir . --check .", diff --git a/package.json b/package.json index 99e130c..fd9bae6 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,6 @@ "scripts": { "build": "turbo run build", "dev": "dotenv -- turbo run dev", - "docker:web" : " pnpm run --filter=\"web\" build && node apps/web/build", "lint:cspell": "cspell --exclude \"apps/**/*\" --exclude \"packages/**/*\" \"**/*\"", "lint:prettier": "prettier --check --ignore-path=.prettierignore.root .", "lint:packages": "turbo run lint",