File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 2828 "files" : [
2929 " dist" ,
3030 " !dist/**/*.test.*" ,
31- " !dist/**/*.spec.*"
31+ " !dist/**/*.spec.*" ,
32+ " !dist/bundle/**"
3233 ],
3334 "scripts" : {
34- "build" : " vite build && pnpm package" ,
35+ "build" : " vite build && pnpm package && pnpm bundle" ,
36+ "bundle" : " pnpm bundle:index && pnpm bundle:task && pnpm bundle:vite" ,
37+ "bundle:index" : " esbuild './dist/index.js' --bundle --outfile='./dist/bundle/index.js' --minify" ,
38+ "bundle:task" : " esbuild './dist/task.js' --bundle --outfile='./dist/bundle/task.js' --minify" ,
39+ "bundle:vite" : " esbuild './dist/vite.js' --bundle --outfile='./dist/bundle/vite.js' --minify" ,
3540 "check" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json" ,
3641 "check:watch" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" ,
3742 "dev" : " vite dev" ,
You can’t perform that action at this time.
0 commit comments