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:
Yuichiro Tachibana (Tsuchiya) 2023-07-04 23:35:58 +09:00 committed by GitHub
parent 0529dfd43e
commit cb96d657b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -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",

View File

@ -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"