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

Last change on this file since 37536 was 37536, checked in by davidb, 13 months ago

Scripts to compile up and install winbox-with-interactjs

  • Property svn:executable set to *
File size: 605 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-interact ^
11 && npm run build ^
12 && echo Copying built 'dist' to 'winbox-with-iteract-dist' ^
13 && if exist ..\..\winbox-with-interact-dist ( rd /s /q ..\..\winbox-with-interact-dist ) ^
14 && mkdir ..\..\winbox-with-interact-dist ^
15 && xcopy /e /h dist ..\..\winbox-with-interact-dist\ ^
16 && cd ..\..
Note: See TracBrowser for help on using the repository browser.