chore: prune unused apps and services for the moeka fork
CI / Lint (push) Canceled after 0s
CI / Build Test (stage-web) (push) Canceled after 0s
CI / Build Test (ui-loading-screens) (push) Canceled after 0s
CI / Build Test (ui-transitions) (push) Canceled after 0s
CI / Unit Test (push) Canceled after 0s
CI / Type Check (push) Canceled after 0s
CI / Check Provenance (push) Canceled after 0s
Sync Labels / sync-labels (push) Successful in 1m43s

- Remove stage-tamagotchi, stage-pocket, server, and engine workspaces with their workflows, addons, and docs
- Switch the toolchain from pnpm to bun, replace lockfiles with bun.lock
- Rewrite remaining product references to Moeka
This commit is contained in:
2026-09-14 16:40:49 +07:00
parent 00c6867b7f
commit dc26878386
1981 changed files with 10974 additions and 260677 deletions
+5 -41
View File
@@ -1,30 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Electron",
"type": "node",
"request": "launch",
// Where to run the command
"runtimeExecutable": "pnpm",
"runtimeArgs": ["-F", "@proj-airi/stage-tamagotchi", "exec", "electron-vite", "--sourcemap"],
// Open terminal when debugging starts (Optional)
// Useful to see console.logs
// "console": "integratedTerminal",
// "internalConsoleOptions": "neverOpen",
"env": {
"REMOTE_DEBUGGING_PORT": "9222"
}
},
{
"name": "Debug Minecraft Service",
"type": "node",
"request": "launch",
// Where to run the command
// Where to run the command
"runtimeExecutable": "pnpm",
"runtimeArgs": ["-F", "@proj-airi/minecraft-bot", "exec", "tsx"],
"args": ["--env-file=.env", "--env-file-if-exists=.env.local", "src/main.ts"],
"runtimeExecutable": "bun",
"runtimeArgs": ["run", "start"],
"cwd": "${workspaceFolder}/integrations/minecraft",
"envFile": "${workspaceFolder}/integrations/minecraft/.env",
// Open terminal when debugging starts (Optional)
// Useful to see console.logs
@@ -34,36 +18,16 @@
"<node_internals>/**"
]
},
{
"name": "Debug Renderer Process",
"port": 9222,
"request": "attach",
"type": "chrome",
"webRoot": "${workspaceFolder}/src/renderer",
"timeout": 60000,
"presentation": {
"hidden": true
}
},
{
"name": "Debug VSCode Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/plugins/airi-plugin-vscode"
"--extensionDevelopmentPath=${workspaceFolder}/integrations/vscode/airi-plugin-vscode"
],
"outFiles": [
"${workspaceFolder}/plugins/airi-plugin-vscode/dist/**/*.cjs"
"${workspaceFolder}/integrations/vscode/airi-plugin-vscode/dist/**/*.cjs"
]
}
],
"compounds": [
{
"name": "Debug All",
"configurations": ["Debug Electron", "Debug Renderer Process"],
"presentation": {
"order": 1
}
}
]
}