mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Lite: refactoring the dev script (#4753)
* Rename the 'start' npm command to 'dev' for in-project consistency * Fix the 'dev:lite' npm command to launch the dev command of @gradio/wasm as well --------- Co-authored-by: pngwn <hello@pngwn.io>
This commit is contained in:
parent
0529dfd43e
commit
cb96d657b4
@ -5,7 +5,9 @@
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --port 9876",
|
||||
"dev:lite": "vite --port 9876 --mode development:lite",
|
||||
"dev:lite": "run-p dev:lite:*",
|
||||
"dev:lite:self": "vite --port 9876 --mode development:lite",
|
||||
"dev:lite:worker": "pnpm --filter @gradio/wasm dev",
|
||||
"build:cdn": "vite build --mode production:cdn --emptyOutDir",
|
||||
"build:website": "vite build --mode production:website --emptyOutDir",
|
||||
"build:local": "vite build --mode production:local --emptyOutDir",
|
||||
|
@ -13,9 +13,9 @@
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"scripts": {
|
||||
"start:client": "tsc -w --incremental",
|
||||
"start:worker": "vite build --config vite.worker.config.js --watch --emptyOutDir=false",
|
||||
"start": "run-p start:*",
|
||||
"dev:client": "tsc -w --incremental",
|
||||
"dev:worker": "vite build --config vite.worker.config.js --watch --emptyOutDir=false",
|
||||
"dev": "run-p dev:*",
|
||||
"build:client": "tsc",
|
||||
"build:worker": "vite build --config vite.worker.config.js",
|
||||
"build": "run-s build:worker build:client"
|
||||
|
Loading…
x
Reference in New Issue
Block a user