Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable corepack
run: corepack enable

- uses: actions/setup-node@v3
with:
node-version: "latest"
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: Update yarn
run: yarn set version stable

- name: Install packages
run: yarn install --immutable

Expand All @@ -57,6 +57,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable corepack
run: corepack enable

- uses: Roblox/setup-foreman@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -67,9 +70,6 @@ jobs:
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: Update yarn
run: yarn set version stable

- name: Install packages
run: yarn install --immutable

Expand Down Expand Up @@ -136,6 +136,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable corepack
run: corepack enable

- uses: Roblox/setup-foreman@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -146,9 +149,6 @@ jobs:
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: Update yarn
run: yarn set version stable

- name: Install packages
run: yarn install --immutable

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable corepack
run: corepack enable

- uses: Roblox/setup-foreman@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -26,9 +29,6 @@ jobs:
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: Update yarn
run: yarn set version stable

- name: Install packages
run: yarn install --immutable

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/luacov.*.out
node_modules/
.vscode
.yarn

build
Expand Down
6 changes: 6 additions & 0 deletions .luau-analyze.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"luau-lsp.require.mode": "relativeToFile",
"luau-lsp.require.directoryAliases": {
"@pkg": "node_modules/.luau-aliases"
}
}
10 changes: 10 additions & 0 deletions .luaurc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"languageMode": "strict",
"lintErrors": true,
"lint": {
"*": true
},
"aliases": {
"pkg": "./node_modules/.luau-aliases"
}
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"luau-lsp.completion.imports.requireStyle": "alwaysRelative",
"luau-lsp.completion.imports.enabled": true,
"luau-lsp.sourcemap.autogenerate": false,
"luau-lsp.sourcemap.enabled": false
}
6 changes: 0 additions & 6 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
Loading