mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 17:52:36 +00:00
## About The Pull Request Puts a switch inside our build tools that will download the appropriate node version based on your OS. #82334 ## Why It's Good For The Game Closes #83076 Allows players to play the game
35 lines
682 B
Bash
35 lines
682 B
Bash
#!/bin/sh
|
|
|
|
#Project dependencies file
|
|
#Final authority on what's required to fully build the project
|
|
|
|
# byond version
|
|
export BYOND_MAJOR=515
|
|
export BYOND_MINOR=1637
|
|
|
|
#rust_g git tag
|
|
export RUST_G_VERSION=3.1.0
|
|
|
|
#node version
|
|
export NODE_VERSION_LTS=20.13.0
|
|
# compatiblility mode MUST work with windows 7
|
|
export NODE_VERSION_COMPAT=20.2.0
|
|
|
|
# SpacemanDMM git tag
|
|
export SPACEMAN_DMM_VERSION=suite-1.8
|
|
|
|
# Python version for mapmerge and other tools
|
|
export PYTHON_VERSION=3.9.0
|
|
|
|
#auxlua repo
|
|
export AUXLUA_REPO=tgstation/auxlua
|
|
|
|
#auxlua git tag
|
|
export AUXLUA_VERSION=1.4.4
|
|
|
|
#hypnagogic repo
|
|
export CUTTER_REPO=spacestation13/hypnagogic
|
|
|
|
#hypnagogic git tag
|
|
export CUTTER_VERSION=v3.1.0
|