Skip to content

Commit 11e3198

Browse files
aatxeannieetangNicell
authored
Move to next-generation Luau.org! (#68)
Co-authored-by: Annie Tang <98965493+annieetang@users.noreply.github.com> Co-authored-by: Nick Winans <nick@winans.io>
1 parent 6fd9d81 commit 11e3198

File tree

152 files changed

+9302
-1423
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+9302
-1423
lines changed

.bundle/config

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/deploy.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy to GitHub Pages
2+
on:
3+
push:
4+
branches: [ master ]
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout your repository using git
17+
uses: actions/checkout@v5
18+
- name: Install, build, and upload your site
19+
uses: withastro/action@v5
20+
21+
deploy:
22+
needs: build
23+
runs-on: ubuntu-latest
24+
environment:
25+
name: github-pages
26+
url: ${{ steps.deployment.outputs.page_url }}
27+
steps:
28+
- name: Deploy to GitHub Pages
29+
id: deployment
30+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1-
_site
2-
.sass-cache
3-
.jekyll-cache
4-
.jekyll-metadata
5-
vendor
6-
Gemfile.lock
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

404.html

Lines changed: 0 additions & 25 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 4 deletions
This file was deleted.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2023 Roblox Corporation
3+
Copyright (c) 2019-2026 Roblox Corporation
44
Copyright (c) 1994–2019 Lua.org, PUC-Rio.
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy of

_config.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

_data/navigation.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)