-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56f3296
commit 49c235e
Showing
4 changed files
with
9 additions
and
5,687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
{ | ||
"name": "my-spa", | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"prepare": "panda codegen", | ||
"dev": "vite", | ||
"build": "tsc -b && vite build", | ||
"build:move": "pnpm run build && pnpm run move-assets", | ||
"build:move": "bun run build && bun run move-assets", | ||
"move-assets": "rsync -av --delete dist/index.html ../backend/public/ && rsync -av --delete dist/assets/ ../backend/public/assets/ && touch ../backend/public/assets/.keep", | ||
"preview": "vite preview", | ||
"graphql-codegen": "graphql-codegen", | ||
"lint": "pnpm run lint:code && pnpm run lint:style && pnpm run lint:check", | ||
"lint": "bun run lint:code && bun run lint:style && bun run lint:check", | ||
"lint:code": "biome lint ./", | ||
"lint:style": "biome format ./", | ||
"lint:check": "biome check ./", | ||
"fix": "pnpm run fix:code && pnpm run fix:style && pnpm run fix:check", | ||
"fix": "bun run fix:code && bun run fix:style && bun run fix:check", | ||
"fix:code": "biome lint --write ./", | ||
"fix:style": "biome format --write ./", | ||
"fix:check": "biome check --write ./" | ||
|
Oops, something went wrong.