chore: 修复 dev

This commit is contained in:
winixt 2025-09-10 14:39:59 +08:00
parent c1fa59fcf8
commit 0e07b43306
26 changed files with 29 additions and 25 deletions

View File

@ -19,7 +19,7 @@
],
"scripts": {
"bootstrap": "pnpm i",
"dev": "node scripts/build.mjs --watch",
"dev": "turbo run watch",
"build": "turbo run build",
"release": "node scripts/release.mjs",
"clean": "rm -rf ./node_modules & rm -rf packages/**/node_modules & rm -rf packages/**/.cache",

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"dist"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -28,7 +28,7 @@
"templates/**/*"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -10,7 +10,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"license": "MIT",

View File

@ -42,7 +42,7 @@
"node": ">= 18.0.0"
},
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup",
"start": "npm-run-all --parallel start:*",
"start:vite-main": "cd ./examples/vite-main && fes dev",

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -24,7 +24,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -24,7 +24,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -25,7 +25,7 @@
"types.d.ts"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"dist"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -23,7 +23,7 @@
"dist"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"watch": "tsup --watch",
"build": "tsup"
},
"publishConfig": {

View File

@ -3,6 +3,10 @@
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"watch": {
"dependsOn": [],
"outputs": []
}
}
}