Fix: debugger (#1014)
* fix(client): remove debugger code * chore: recover vscode debugger configuration
This commit is contained in:
parent
642e04490d
commit
33b96c7545
32
.vscode/launch.json
vendored
32
.vscode/launch.json
vendored
@ -4,13 +4,41 @@
|
||||
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Debug Server",
|
||||
"cmd": "${workspaceRoot}",
|
||||
"runtimeArgs": [
|
||||
"-r", "dotenv/config",
|
||||
"-r", "tsconfig-paths/register",
|
||||
"-r", "ts-node/register"
|
||||
],
|
||||
"args": ["${workspaceRoot}/packages/app/server/src/index.ts", "start"],
|
||||
"port": 9229,
|
||||
"skipFiles": [
|
||||
"<node_internals>/**"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"internalConsoleOptions": "neverOpen"
|
||||
},
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Debug Jest Tests",
|
||||
"runtimeExecutable": "yarn",
|
||||
"runtimeArgs": ["run", "--inspect-brk", "test", "--runInBand", "${fileBasenameNoExtension}"],
|
||||
"skipFiles": ["<node_internals>/**"],
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"--inspect-brk",
|
||||
"test",
|
||||
"--runInBand",
|
||||
// could be any single file path to debug
|
||||
"${workspaceFolder}/packages/plugins/workflow/src/__tests__/instructions/parallel.test.ts"
|
||||
],
|
||||
"port": 9229,
|
||||
"skipFiles": [
|
||||
"<node_internals>/**"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"internalConsoleOptions": "neverOpen"
|
||||
}
|
||||
|
@ -182,7 +182,6 @@ export const CollectionFieldsTableArray: React.FC<any> = observer((props) => {
|
||||
};
|
||||
|
||||
const expandedRowRender = (record: CategorizeDataItem, index, indent, expanded) => {
|
||||
debugger;
|
||||
return (
|
||||
<Table
|
||||
{...others}
|
||||
|
Loading…
Reference in New Issue
Block a user