16 lines
259 B
Batchfile
16 lines
259 B
Batchfile
|
|
echo off
|
||
|
|
|
||
|
|
|
||
|
|
set START_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
||
|
|
echo start time %START_TIME%
|
||
|
|
|
||
|
|
call npm install
|
||
|
|
|
||
|
|
call npm run build
|
||
|
|
|
||
|
|
set END_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
||
|
|
|
||
|
|
echo Build Release start at %START_TIME% complete at %END_TIME%.
|
||
|
|
|
||
|
|
pause
|