Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Remove old Vite commands #3428

Merged
merged 3 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN apk -U add git
COPY . /home/workspace
RUN corepack enable
RUN yarn install
RUN yarn build:vite && rm -f build/mockServiceWorker.js
RUN yarn build && rm -f build/mockServiceWorker.js


FROM alpine:3.17
Expand Down
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@
"private": true,
"scripts": {
"dev": "yarn start",
"dev:vite": "yarn start",
"start": "vite --host",
"start:vite": "yarn start",
"build": "tsc -b && vite build",
"build:vite": "yarn build",
"test": "vitest run --changed --config ./vitest.config.mjs",
"test:vite": "yarn test",
"test": "vitest run --config ./vitest.config.mjs",
"test:changed": "vitest run --changed --config ./vitest.config.mjs",
"test:watch": "vitest watch --changed --config ./vitest.config.mjs",
"test:ci": "vitest run --config ./vitest.config.mjs --coverage",
"preview-coverage": "npx vite preview --open --outDir coverage",
Expand Down
Loading