File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 12
12
"build:debug" : " npm run build:debug:node && npm run build:debug:test" ,
13
13
"build:debug:node" : " tsc --build ./tsconfig.node.json && tsc-alias -p tsconfig.node.json" ,
14
14
"build:debug:test" : " tsc --build ./tsconfig.test.json" ,
15
- "build:prod" : " tsc --build ./tsconfig.prod.json && tsc-alias -p tsconfig.prod.json"
15
+ "build:prod" : " tsc --build ./tsconfig.prod.json && tsc-alias -p tsconfig.prod.json" ,
16
+ "clean" : " tsc --build --clean && tsc --build tsconfig.prod.json --clean && tsc --build tsconfig.node.json --clean && tsc --build tsconfig.test.json --clean"
16
17
},
17
18
"author" : " Alex Recuenco" ,
18
19
"license" : " MIT" ,
Original file line number Diff line number Diff line change 7
7
"dev" : " vite" ,
8
8
"build" : " tsc --build tsconfig.app.json && vite build" ,
9
9
"lint" : " eslint ." ,
10
- "preview" : " vite preview"
10
+ "preview" : " vite preview" ,
11
+ "clean" : " tsc --build --clean && tsc --build tsconfig.node.json --clean && tsc --build tsconfig.app.json --clean"
11
12
},
12
13
"dependencies" : {
13
14
"react" : " ^18.3.1" ,
Original file line number Diff line number Diff line change 24
24
"test" : " tsc --build ./tsconfig.test.json" ,
25
25
"build" : " npm run build:prod:esm && npm run build:prod:cjs" ,
26
26
"build:prod:esm" : " tsc --build tsconfig.esm.json" ,
27
- "build:prod:cjs" : " tsc --build tsconfig.cjs.json && cp ../../package.cjs-template.json dist/cjs/package.json"
27
+ "build:prod:cjs" : " tsc --build tsconfig.cjs.json && cp ../../package.cjs-template.json dist/cjs/package.json" ,
28
+ "clean" : " tsc --build --clean && tsc --build tsconfig.esm.json --clean && tsc --build tsconfig.cjs.json --clean && tsc --build tsconfig.test.json --clean"
28
29
},
29
30
"author" : " Alex Recuenco" ,
30
31
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments