forked from surveyjs/survey-creator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-dev-server-react.bat
39 lines (34 loc) · 1.13 KB
/
run-dev-server-react.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
cd ../survey-library
echo -----------------------------------------
echo INSTALLING survey-library DEPENDENCIES...
echo -----------------------------------------
call npm i
echo BUILDING survey-library SOURCES...
call npm run build_core
call npm run build_react
call npm run build_react_ui
cd ../survey-creator
echo -----------------------------------------
echo INSTALLING survey-creator DEPENDENCIES...
echo -----------------------------------------
call npm i
cd packages/survey-creator-core
echo -----------------------------------------
echo INSTALLING survey-creator-core DEPENDENCIES...
echo -----------------------------------------
call npm i
echo -----------------------------------------
echo BUILDING survey-creator-core SOURCES...
echo -----------------------------------------
call npm run build
cd ../survey-creator-react
echo -----------------------------------------
echo INSTALLING survey-creator-react DEPENDENCIES...
echo -----------------------------------------
call npm i
echo -----------------------------------------
echo STARTING React DEV SERVER...
echo -----------------------------------------
call npm run start
pause