fixed ci script
This commit is contained in:
parent
04e4278bab
commit
ac413285bf
|
|
@ -8,4 +8,4 @@ jobs:
|
|||
- uses: oven-sh/setup-bun@v2
|
||||
|
||||
- run: bun install
|
||||
- run: bun run tsc
|
||||
- run: bun -F '*' run tsc
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@
|
|||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "bun run src/index.tsx",
|
||||
"dev": "bun run --watch --hot src/index.tsx"
|
||||
"dev": "bun run --watch --hot src/index.tsx",
|
||||
"tsc": "tsc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
|
|
|
|||
|
|
@ -27,5 +27,6 @@
|
|||
"paths": {
|
||||
"~/*": ["./src/*"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@
|
|||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "bun run index.html"
|
||||
"dev": "bun run index.html",
|
||||
"tsc": "tsc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,9 @@
|
|||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {},
|
||||
"scripts": {
|
||||
"tsc": "tsc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.2",
|
||||
"@types/bun": "latest"
|
||||
|
|
|
|||
Loading…
Reference in New Issue