Skip to content

Commit

Permalink
reordered launches, formatted the json
Browse files Browse the repository at this point in the history
  • Loading branch information
vb2007 committed Aug 6, 2024
1 parent ceff379 commit cca1f65
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,43 +5,43 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch bot.",
"type": "node",
"request": "launch",
"name": "Launch bot.",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/index.js"
},
{
"type": "node",
"request": "launch",
"name": "Deploy slash commands.",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/deploy-commands.js"
},
{
"type": "node",
"request": "launch",
"name": "(Re)create SQL tables.",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/create-tables.js"
"program": "${workspaceFolder}/deploy-commands.js"
},
{
"name": "Run unit test(s).",
"type": "node",
"request": "launch",
"name": "Run unit test(s).",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/jest/bin/jest.js",
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "(Re)create SQL tables.",
"type": "node",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/create-tables.js"
}
]
}

0 comments on commit cca1f65

Please sign in to comment.