parent
cd2c190798
commit
1b77dce437
@ -27,13 +27,13 @@ jobs:
|
||||
with:
|
||||
github-server-url: ${{ env.SERVER_URL }}
|
||||
|
||||
- name: Setup Bun
|
||||
uses: oven-sh/setup-bun@v2.0.1
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4.2.0
|
||||
with:
|
||||
bun-version: 1.2.2
|
||||
node-version: 23.8.0
|
||||
|
||||
- name: Install Dependencies
|
||||
run: bun install
|
||||
run: npm install
|
||||
|
||||
- name: Setup Aftman
|
||||
uses: ok-nick/setup-aftman@v0.4.2
|
||||
@ -45,10 +45,10 @@ jobs:
|
||||
run: aftman install --no-trust-check
|
||||
|
||||
- name: ESLint Check
|
||||
run: bun run lint
|
||||
run: npm run lint
|
||||
|
||||
- name: Build & Bundle
|
||||
run: bun run build
|
||||
run: npm run build
|
||||
|
||||
- name: Get Version
|
||||
id: version
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,5 @@
|
||||
node_modules
|
||||
bun.lock
|
||||
bun.lockb
|
||||
package-lock.json
|
||||
|
||||
/out
|
||||
/script.luau
|
||||
|
41
.vscode/launch.json
vendored
Normal file
41
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Build",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"runtimeExecutable": "npm",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"build"
|
||||
],
|
||||
"console": "integratedTerminal"
|
||||
},
|
||||
{
|
||||
"name": "Dev",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"runtimeExecutable": "npm",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"dev"
|
||||
],
|
||||
"console": "integratedTerminal"
|
||||
},
|
||||
{
|
||||
"name": "Dev (Sync)",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"runtimeExecutable": "npm",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"dev-sync"
|
||||
],
|
||||
"console": "integratedTerminal"
|
||||
}
|
||||
]
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "roblox-ai",
|
||||
"author": "snipcola",
|
||||
"version": "0.5.6",
|
||||
"version": "0.5.7",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"files": [
|
||||
@ -26,13 +26,13 @@
|
||||
"@eslint/js": "9.20.0",
|
||||
"@rbxts/compiler-types": "3.0.0-types.0",
|
||||
"@rbxts/types": "1.0.836",
|
||||
"@typescript-eslint/parser": "8.24.0",
|
||||
"@typescript-eslint/parser": "8.24.1",
|
||||
"eslint": "9.20.1",
|
||||
"globals": "15.15.0",
|
||||
"isentinel-eslint-plugin-roblox-ts": "0.0.37",
|
||||
"prettier": "3.5.1",
|
||||
"roblox-ts-script": "0.2.3",
|
||||
"roblox-ts-script": "0.2.4",
|
||||
"typescript": "5.7.3",
|
||||
"typescript-eslint": "8.24.0"
|
||||
"typescript-eslint": "8.24.1"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user