From 31e997a192fabaaf35b0f64c81f1e5e04763d51b Mon Sep 17 00:00:00 2001 From: Del Wang Date: Mon, 1 Sep 2025 09:49:07 +0800 Subject: [PATCH] chore: debug ota --- packages/client-patch/.vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 packages/client-patch/.vscode/launch.json diff --git a/packages/client-patch/.vscode/launch.json b/packages/client-patch/.vscode/launch.json new file mode 100644 index 0000000..8e81258 --- /dev/null +++ b/packages/client-patch/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Test", + "type": "node", + "request": "launch", + "program": "${workspaceFolder}/src/ota.ts", + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/tsx", + "cwd": "${workspaceRoot}", + "envFile": "${workspaceFolder}/.env", + "internalConsoleOptions": "openOnSessionStart" + } + ] +}