An over-broad `git add -A` in the previous commit swept a local dev-server entry for an unrelated application into .claude/launch.json. It pointed at a path outside this repository and was not Prettier-formatted, so it failed format:check. Restored to the version on main. Also runs Prettier over migrate.ts, which the dead-code removal left unformatted. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
30 lines
557 B
JSON
30 lines
557 B
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "basic-app",
|
|
"runtimeExecutable": "bun",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"packages/cli/src/index.ts",
|
|
"dev",
|
|
"examples/basic-app",
|
|
"--port=3520"
|
|
],
|
|
"port": 3520
|
|
},
|
|
{
|
|
"name": "component-showcase",
|
|
"runtimeExecutable": "bun",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"packages/cli/src/index.ts",
|
|
"dev",
|
|
"examples/component-showcase",
|
|
"--port=3400"
|
|
],
|
|
"port": 3400
|
|
}
|
|
]
|
|
}
|