File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ bun = "1.3.8"
44[tasks ]
55install = " bun install"
66codegen = " bun run paraglide:compile"
7- "lint:eslint" = " bun x eslint . "
8- "lint:prettier" = " bun x prettier --check . "
7+ "lint:eslint" = " bun run lint: eslint"
8+ "lint:prettier" = " bun run lint: prettier"
99"lint:check" = " bun run check"
1010lint = { depends = [" lint:*" ] }
11- "fmt:prettier" = " bun x prettier --write . "
11+ "fmt:prettier" = " bun run fmt: prettier"
1212fmt = { depends = [" fmt:*" ] }
1313build = " bun run build"
1414test = " echo 'No tests found'"
Original file line number Diff line number Diff line change 1010 "build" : " vite build" ,
1111 "preview" : " vite preview" ,
1212 "check" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json" ,
13- "check:watch" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
13+ "check:watch" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" ,
14+ "lint:eslint" : " eslint ." ,
15+ "lint:prettier" : " prettier --check ." ,
16+ "fmt:prettier" : " prettier --write ."
1417 },
1518 "devDependencies" : {
1619 "@eslint/js" : " ^9.39.2" ,
You can’t perform that action at this time.
0 commit comments