Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/release-development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- uses: jdx/mise-action@5ac50f778e26fac95da98d50503682459e86d566 # v3.2

- name: Install dependencies
run: corepack pnpm install
run: pnpm install

- name: Install roblox-ts
run: corepack pnpm add roblox-ts
run: pnpm add roblox-ts

- name: Setup Rokit
uses: CompeyDev/setup-rokit@d49be92bd9502180218c3f43e7988faa945217b0 # v0.1.2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
- uses: jdx/mise-action@5ac50f778e26fac95da98d50503682459e86d566 # v3.2

- name: Install dependencies
run: corepack pnpm install
run: pnpm install

- name: Install roblox-ts
run: corepack pnpm add roblox-ts
run: pnpm add roblox-ts

- name: Compile
run: corepack pnpm prod:build --verbose
run: pnpm prod:build --verbose

- name: Build project
run: rojo build ./build.project.json --output place.rbxlx
Expand Down
2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
corepack pnpm dlx commitlint --edit "$1"
pnpm dlx commitlint --edit "$1"
2 changes: 1 addition & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
. "$(dirname "$0")/_/husky.sh"

# matches only the package-lock.json inside project directory
npx git-pull-run --pattern "pnpm-lock.yaml" --command "corepack pnpm install"
npx git-pull-run --pattern "pnpm-lock.yaml" --command "pnpm install"
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
corepack pnpm lint-staged
pnpm lint-staged
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@
"npm.packageManager": "pnpm",

// Mise Tools settings
"mise.configureExtensionsUseSymLinks": true,
"debug.javascript.defaultRuntimeExecutable": {
"pwa-node": "${workspaceFolder}\\.vscode\\mise-tools\\node"
},

// Options for GitHub Copilot
"github.copilot.chat.commitMessageGeneration.instructions": [
{
"file": ".github/commit-instructions.md"
Expand Down
6 changes: 6 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
_.path = [ '{{config_root}}/node_modules/.bin' ]
_.file = { path = ".env", redact = true }

[hooks]
postinstall = "npx corepack enable"

[settings]
experimental = true

[tools]
"ubi:blake-mealey/mantle" = "0.11.17-prerelease"
"ubi:jacktabscode/asphalt" = "0.9.1"
Expand Down