Skip to content

Commit 69f8d3d

Browse files
authored
move dev to dev:cli and use dev for static app (#206)
1 parent d8dac08 commit 69f8d3d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"build:app": "vite build",
3535
"build": "run-s build:lib build:types build:app",
3636
"coverage": "vitest run --coverage --coverage.include=src --coverage.include=bin",
37-
"dev": "run-p -l watch:ts watch:vite watch:serve",
37+
"dev:cli": "run-p -l watch:ts watch:cli watch:serve",
38+
"dev": "run-p -l watch:ts watch:static",
3839
"lint": "eslint",
3940
"lint:fix": "eslint --fix",
4041
"prepublishOnly": "npm run build",
@@ -44,9 +45,10 @@
4445
"typecheck": "tsc --noEmit",
4546
"url": "run-p -l watch:ts watch:vite watch:url",
4647
"preurl": "npm run build",
47-
"watch:ts": "tsc --watch",
48-
"watch:vite": "vite build --watch",
48+
"watch:cli": "vite build --watch",
4949
"watch:serve": "NODE_ENV=development nodemon bin/cli.js",
50+
"watch:static": "vite",
51+
"watch:ts": "tsc --watch",
5052
"watch:url": "NODE_ENV=development nodemon bin/cli.js https://hyperparam.blob.core.windows.net/hyperparam/starcoderdata-js-00000-of-00065.parquet"
5153
},
5254
"dependencies": {

0 commit comments

Comments
 (0)