source: gs3-extensions/tabletop-dl/trunk/COMPILE.bat@ 37538

Last change on this file since 37538 was 37537, checked in by davidb, 14 months ago

Tweaks after testing

  • Property svn:executable set to *
File size: 631 bytes
Line 
1@echo on
2
3if not exist src\winbox-with-interactjs\node_modules (
4 echo Failed to find src\winbox-with-interactjs\node_modules >&2
5 echo Have you run ./NPM-DEV-INSTALL.sh ? >&2
6 exit /b 1
7)
8
9cd src\winbox-with-interactjs ^
10 && echo Running npm run build in src/winbox-with-interactjs ^
11 && call npm run build ^
12 && echo Copying built 'dist' to 'winbox-with-iteractjs-dist' ^
13 && if exist ..\..\winbox-with-interactjs-dist ( rd /s /q ..\..\winbox-with-interactjs-dist ) ^
14 && mkdir ..\..\winbox-with-interactjs-dist ^
15 && xcopy /e /h dist ..\..\winbox-with-interactjs-dist\ ^
16 && cd ..\..
17
18
19
20
Note: See TracBrowser for help on using the repository browser.