File tree Expand file tree Collapse file tree 7 files changed +54
-29
lines changed
Expand file tree Collapse file tree 7 files changed +54
-29
lines changed Original file line number Diff line number Diff line change 2121 "test:unit" : " bun test test/lib test/commands test/types --coverage --coverage-reporter=lcov" ,
2222 "test:isolated" : " bun test test/isolated" ,
2323 "test:e2e" : " bun test test/e2e" ,
24- "test:init-eval" : " bun test test/init-eval --timeout 600000" ,
24+ "test:init-eval" : " bun test test/init-eval --timeout 600000 --concurrency 6 " ,
2525 "generate:skill" : " bun run script/generate-skill.ts" ,
2626 "check:skill" : " bun run script/check-skill.ts" ,
2727 "check:deps" : " bun run script/check-no-deps.ts"
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export const PLATFORMS: Platform[] = [
9292 depFile : "requirements.txt" ,
9393 docs : getDocs ( "python-flask" ) ,
9494 installCmd :
95- "python -m venv .venv && .venv/bin/pip install -r requirements.txt" ,
95+ "python3 -m venv .venv && .venv/bin/pip install -r requirements.txt" ,
9696 buildCmd : ".venv/bin/python -m compileall -q ." ,
9797 initPattern : / s e n t r y _ s d k \. i n i t / ,
9898 timeout : 300_000 ,
@@ -105,7 +105,7 @@ export const PLATFORMS: Platform[] = [
105105 depFile : "requirements.txt" ,
106106 docs : getDocs ( "python-fastapi" ) ,
107107 installCmd :
108- "python -m venv .venv && .venv/bin/pip install -r requirements.txt" ,
108+ "python3 -m venv .venv && .venv/bin/pip install -r requirements.txt" ,
109109 buildCmd : ".venv/bin/python -m compileall -q ." ,
110110 initPattern : / s e n t r y _ s d k \. i n i t / ,
111111 timeout : 300_000 ,
Original file line number Diff line number Diff line change 11{
22 "name" : " sveltekit-app" ,
3- "version" : " 0.1.0" ,
43 "private" : true ,
4+ "version" : " 0.0.1" ,
5+ "type" : " module" ,
56 "scripts" : {
67 "dev" : " vite dev" ,
78 "build" : " vite build" ,
8- "preview" : " vite preview"
9+ "preview" : " vite preview" ,
10+ "prepare" : " svelte-kit sync || echo ''"
911 },
1012 "devDependencies" : {
11- "@sveltejs/adapter-auto " : " ^4 .0.0" ,
12- "@sveltejs/kit" : " ^2.16.0 " ,
13- "@sveltejs/vite-plugin-svelte" : " ^5.0.0 " ,
14- "svelte" : " ^5.0 .0" ,
15- "typescript" : " ^5" ,
16- "vite" : " ^6.0.0 "
13+ "@sveltejs/adapter-node " : " ^5 .0.0" ,
14+ "@sveltejs/kit" : " ^2.50.2 " ,
15+ "@sveltejs/vite-plugin-svelte" : " ^6.2.4 " ,
16+ "svelte" : " ^5.51 .0" ,
17+ "typescript" : " ^5.9.3 " ,
18+ "vite" : " ^7.3.1 "
1719 }
1820}
Original file line number Diff line number Diff line change 1+ // See https://svelte.dev/docs/kit/types#app.d.ts
2+ // for information about these interfaces
3+ declare global {
4+ namespace App {
5+ // interface Error {}
6+ // interface Locals {}
7+ // interface PageData {}
8+ // interface PageState {}
9+ // interface Platform {}
10+ }
11+ }
12+
13+ export { } ;
Original file line number Diff line number Diff line change 1+ <!doctype html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="utf-8 " />
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1 " />
6+ %sveltekit.head%
7+ </ head >
8+ < body data-sveltekit-preload-data ="hover ">
9+ < div style ="display: contents "> %sveltekit.body%</ div >
10+ </ body >
11+ </ html >
Original file line number Diff line number Diff line change 1- import adapter from "@sveltejs/adapter-auto" ;
2- import { vitePreprocess } from "@sveltejs/vite-plugin-svelte" ;
1+ import adapter from '@sveltejs/adapter-node' ;
32
43/** @type {import('@sveltejs/kit').Config } */
54const config = {
6- preprocess : vitePreprocess ( ) ,
7- kit : {
8- adapter : adapter ( ) ,
9- } ,
5+ kit : {
6+ adapter : adapter ( )
7+ }
108} ;
119
1210export default config ;
Original file line number Diff line number Diff line change 11{
2- "extends" : " ./.svelte-kit/tsconfig.json" ,
3- "compilerOptions" : {
4- "allowJs" : true ,
5- "checkJs" : true ,
6- "esModuleInterop" : true ,
7- "forceConsistentCasingInFileNames" : true ,
8- "resolveJsonModule" : true ,
9- "skipLibCheck" : true ,
10- "sourceMap" : true ,
11- "strict" : true ,
12- "moduleResolution" : " bundler"
13- }
2+ "extends" : " ./.svelte-kit/tsconfig.json" ,
3+ "compilerOptions" : {
4+ "rewriteRelativeImportExtensions" : true ,
5+ "allowJs" : true ,
6+ "checkJs" : true ,
7+ "esModuleInterop" : true ,
8+ "forceConsistentCasingInFileNames" : true ,
9+ "resolveJsonModule" : true ,
10+ "skipLibCheck" : true ,
11+ "sourceMap" : true ,
12+ "strict" : true ,
13+ "moduleResolution" : " bundler"
14+ }
1415}
You can’t perform that action at this time.
0 commit comments