mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 07:54:14 +00:00
Several months worth of updates. --------- Co-authored-by: A miscellaneous Fern <80640114+FernandoJ8@users.noreply.github.com> Co-authored-by: Pepsilawn <reisenrui@gmail.com> Co-authored-by: Ray <64306407+OneAsianTortoise@users.noreply.github.com> Co-authored-by: Cure221 <106662180+Cure221@users.noreply.github.com>
37 lines
696 B
Bash
37 lines
696 B
Bash
#!/bin/sh
|
|
|
|
#Project dependencies file
|
|
#Final authority on what's required to fully build the project
|
|
|
|
# byond version. Also must be updated in .tgs.yml
|
|
export BYOND_MAJOR=516
|
|
export BYOND_MINOR=1659
|
|
|
|
#rust_g git tag
|
|
export RUST_G_VERSION=4.0.0
|
|
|
|
# node version
|
|
export NODE_VERSION_LTS=22.11.0
|
|
|
|
# Bun version
|
|
export BUN_VERSION=1.2.16
|
|
|
|
# SpacemanDMM git tag
|
|
export SPACEMAN_DMM_VERSION=suite-1.11
|
|
|
|
# Python version for mapmerge and other tools
|
|
export PYTHON_VERSION=3.9.0
|
|
|
|
#dreamluau repo
|
|
export DREAMLUAU_REPO="tgstation/dreamluau"
|
|
|
|
#dreamluau git tag
|
|
export DREAMLUAU_VERSION=0.1.2
|
|
|
|
#hypnagogic repo
|
|
export CUTTER_REPO=spacestation13/hypnagogic
|
|
|
|
#hypnagogic git tag
|
|
export CUTTER_VERSION=v5.0.0
|
|
|