Skip to content

Commit

Permalink
feat: 🚀 add debugger functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
xun082 committed Jun 24, 2024
1 parent 94b7e16 commit e263ba6
Show file tree
Hide file tree
Showing 3 changed files with 2,978 additions and 2,403 deletions.
41 changes: 41 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "commit",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["create-ai-toolkit commit"],
"skipFiles": ["<node_internals>/**"],
"console": "integratedTerminal"
},
{
"name": "hooks",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["create-ai-toolkit", "hooks", "moment"],
"skipFiles": ["<node_internals>/**"],
"console": "integratedTerminal"
},
{
"name": "code review",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["create-ai-toolkit", "review"],
"skipFiles": ["<node_internals>/**"],
"console": "integratedTerminal"
},
{
"name": "component",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["create-ai-toolkit", "component", "moment"],
"skipFiles": ["<node_internals>/**"],
"console": "integratedTerminal"
}
]
}
Loading

0 comments on commit e263ba6

Please sign in to comment.