2019-02-17 03:46:48 -03:00
|
|
|
@ECHO off
|
|
|
|
|
|
|
|
ECHO General Bots Command Line
|
|
|
|
|
|
|
|
IF EXIST node_modules goto COMPILE
|
|
|
|
ECHO Installing Packages for the first time use...
|
|
|
|
CALL npm install --silent
|
|
|
|
|
|
|
|
:COMPILE
|
|
|
|
IF EXIST dist goto ALLSET
|
|
|
|
ECHO Compiling...
|
2019-06-26 13:18:15 -03:00
|
|
|
CALL node_modules\.bin\tsc
|
2019-02-17 03:46:48 -03:00
|
|
|
|
|
|
|
:ALLSET
|
2022-12-07 12:08:55 -03:00
|
|
|
node boot.mjs
|