changed start:server with watch:server

This commit is contained in:
RemixDev 2022-02-09 14:28:34 +01:00
parent 6835f797e0
commit c20370966f
1 changed files with 2 additions and 2 deletions

View File

@ -8,10 +8,10 @@
"minify": "esbuild public/js/bundle.temp.js --outfile=public/js/bundle.js --minify",
"build": "npm-run-all --sequential clean build:js minify clean-temp",
"start:server": "yarn --cwd ../server start",
"start:gui": "yarn --cwd ../ start",
"watch:server": "yarn --cwd ../server watch",
"watch:js": "rollup -c -w",
"dev": "npm-run-all --parallel start:server watch:js",
"dev": "npm-run-all --parallel watch:server watch:js",
"lint": "eslint src/**/*.{js,vue,mjs} --fix",
"lint-tests": "eslint src/**/*.js --fix",