Skip to content

Commit

Permalink
move install to npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloricciuti committed Dec 15, 2023
1 parent 9870415 commit be89f9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"version:major": "npm version major",
"build:landing": "vite build",
"build": "svelte-kit sync && svelte-package -o package",
"build:playground": "cd playground && pnpm run build",
"build:playground": "cd playground && pnpm install --frozen-lockfile && pnpm run build",
"preview:playground": "cd playground && pnpm run preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command:
'pnpm run build && pnpm install --frozen-lockfile && pnpm run build:playground && pnpm run preview:playground',
'pnpm run build && pnpm run build:playground && pnpm run preview:playground',
port: 4173,
stderr: 'pipe',
stdout: 'pipe',
Expand Down

0 comments on commit be89f9b

Please sign in to comment.