mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
15 lines
423 B
Batchfile
15 lines
423 B
Batchfile
@echo off
|
|
echo node.js 5.3.0 or newer must be installed for this script to work.
|
|
echo If this script fails, try closing editors and running it again first.
|
|
echo Any warnings about optional dependencies can be safely ignored.
|
|
pause
|
|
REM Install Gulp
|
|
cmd /c npm install gulp-cli -g
|
|
REM Install tgui dependencies
|
|
cmd /c npm install
|
|
REM Flatten dependency tree
|
|
cmd /c npm dedupe
|
|
REM Clean dependency tree
|
|
cmd /c npm prune
|
|
pause
|