File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ webtest:
53
53
cd ${WEBROOT} && $(MAKE ) jstest
54
54
webtestwatch :
55
55
cd ${WEBROOT} && $(MAKE ) jstest-watch
56
+ webserve :
57
+ cd ${WEBROOT} && $(MAKE ) serve
56
58
qt-linux : # run inside dockerdev
57
59
$(MAKE ) buildweb
58
60
cd frontends/qt && $(MAKE ) linux
Original file line number Diff line number Diff line change @@ -28,3 +28,5 @@ jstest-cover:
28
28
listdeps :
29
29
@echo " Listing JavaScript production dependencies. Be careful to not pull in many deps accidentally."
30
30
npm list -prod -long
31
+ serve :
32
+ npm run serve
Original file line number Diff line number Diff line change 54
54
"lint-debug" : " eslint ./src --inspect-config" ,
55
55
"typescript" : " tsc -p tsconfig.json" ,
56
56
"test" : " vitest" ,
57
- "preview" : " vite preview --port 8080"
57
+ "preview" : " vite preview --port 8080" ,
58
+ "serve" : " npm run build && npm run preview"
58
59
}
59
60
}
You can’t perform that action at this time.
0 commit comments