-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: start with a blank railworks-tstl-template
- Loading branch information
Showing
167 changed files
with
26,834 additions
and
21,747 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
FROM squidfunk/mkdocs-material | ||
ADD https://raw.githubusercontent.com/microsoft/vscode-dev-containers/main/script-library/common-alpine.sh /tmp/library-scripts/ | ||
RUN ash /tmp/library-scripts/common-alpine.sh | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:18-bullseye | ||
|
||
# We need Lua 5.0.2, and it must be 32-bit. | ||
RUN apt-get update && apt-get install -y gcc-multilib && rm -rf /var/lib/apt/lists/* \ | ||
&& (curl https://www.lua.org/ftp/lua-5.0.2.tar.gz | tar xz -C /tmp) \ | ||
&& cd /tmp/lua* \ | ||
&& sed -i -e 's$INSTALL_ROOT= /usr/local$INSTALL_ROOT= /usr$' -e 's$MYCFLAGS= -O2$MYCFLAGS= -O2 -m32$' -e 's$#MYLDFLAGS=$MYLDFLAGS= -m32$' config \ | ||
&& ./configure && make all install \ | ||
&& cd /tmp && rm -rf lua* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
{ | ||
"name": "MkDocs", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"forwardPorts": [8000], | ||
"extensions": [ | ||
"yzhang.markdown-all-in-one" | ||
] | ||
"name": "TypeScriptToLua", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"extensions": [ | ||
"typescript-to-lua.vscode-typescript-to-lua", | ||
"dbaeumer.vscode-eslint", | ||
"editorconfig.editorconfig", | ||
"esbenp.prettier-vscode" | ||
], | ||
"postCreateCommand": "npm ci", | ||
"remoteUser": "node" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
# Dev preferences | ||
.vscode/ | ||
node_modules | ||
/dist | ||
|
||
# Output directory | ||
/Mod/ | ||
/*.zip | ||
/site/ | ||
|
||
# For projects that use the Waf build system: https://waf.io/ | ||
# Dot-hidden on Unix-like systems | ||
.waf-*-*/ | ||
.waf3-*-*/ | ||
# Hidden directory on Windows (no dot) | ||
waf-*-*/ | ||
waf3-*-*/ | ||
# Lockfile | ||
.lock-waf_*_build | ||
yarn.lock | ||
.vscode | ||
.idea | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[submodule "Src/Lib/YoRyan/LibRailWorks"] | ||
path = Src/Lib/YoRyan/LibRailWorks | ||
url = https://github.com/YoRyan/LibRailWorks.git | ||
[submodule ".rbs"] | ||
path = .rbs | ||
url = https://github.com/YoRyan/RailWorks-Build-System |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package.json | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"printWidth": 120, | ||
"tabWidth": 4, | ||
"arrowParens": "avoid", | ||
"overrides": [{ "files": ["**/*.md", "**/*.yml"], "options": { "tabWidth": 2 } }] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.