File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 12
12
},
13
13
"homepage" : " https://svelte.dev" ,
14
14
"scripts" : {
15
+ "build:dist" : " node scripts/build-templates dist" ,
15
16
"check" : " tsc" ,
16
17
"format" : " pnpm lint --write" ,
17
18
"lint" : " prettier --check . --config ../../prettier.config.js --ignore-path ../../.gitignore --ignore-path .gitignore --ignore-path ../../.prettierignore" ,
18
- "test" : " node scripts/ build-templates dist && vitest run" ,
19
- "update-template-repo" : " echo \" Updating template repo\" && bash ./scripts/update-template-repo.sh"
19
+ "test" : " pnpm build: dist && vitest run" ,
20
+ "update-template-repo" : " pnpm build:dist && echo \" Updating template repo\" && bash ./scripts/update-template-repo.sh"
20
21
},
21
22
"files" : [
22
23
" dist"
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ set -e
4
+
3
5
get_abs_filename () {
4
6
# $1 : relative filename
5
7
echo " $( cd " $( dirname " $1 " ) " && pwd) /$( basename " $1 " ) "
You can’t perform that action at this time.
0 commit comments