mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-20 22:16:51 +00:00
* tgui: Yarn Berry (#53026) This pull request upgrades Yarn to version 2 (also known as Yarn Berry). * Update build validator * Provide inferno in the root level package * Remove type module from package.json * Powershell build script * tgui: Yarn Berry Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>
10 lines
380 B
Batchfile
10 lines
380 B
Batchfile
@echo off
|
|
rem Copyright (c) 2020 Aleksej Komarov
|
|
rem SPDX-License-Identifier: MIT
|
|
call powershell.exe -NoLogo -ExecutionPolicy Bypass -File "%~dp0\tgui.ps1" --dev %*
|
|
rem Pause if launched in a separate shell unless initiated from powershell
|
|
echo %PSModulePath% | findstr %USERPROFILE% >NUL
|
|
if %errorlevel% equ 0 exit 0
|
|
echo %cmdcmdline% | find /i "/c"
|
|
if %errorlevel% equ 0 pause
|