Skip to content

Commit 99a6031

Browse files
committed
update node packages, disable attach to python per default
1 parent da05cdb commit 99a6031

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed

package.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/d-biehl/robotcode.git"
1111
},
1212
"engines": {
13-
"vscode": "^1.55.1"
13+
"vscode": "^1.56.0"
1414
},
1515
"categories": [
1616
"Programming Languages",
@@ -191,7 +191,6 @@
191191
"description": "Enables 'robocop' code analysis, if installed.",
192192
"scope": "resource"
193193
},
194-
195194
"robotcode.syntax.sectionStyle": {
196195
"type": "string",
197196
"default": "*** {name}s ***",
@@ -204,12 +203,12 @@
204203
"disabled",
205204
"external",
206205
"internal"
207-
],
206+
],
208207
"enumDescriptions": [
209208
"Do not open the result report",
210209
"Opens the report in an external browser.",
211210
"Opens the report in an internal view (experimental)."
212-
],
211+
],
213212
"default": "none",
214213
"description": "Defines if the test report should be opened a run session automatically.",
215214
"scope": "resource"
@@ -375,7 +374,7 @@
375374
"attachPython": {
376375
"type": "boolean",
377376
"description": "Attach also the python debugger if a robot test starts.",
378-
"default": true
377+
"default": false
379378
},
380379
"pythonConfiguration": {
381380
"type": "object",
@@ -427,7 +426,7 @@
427426
"cwd": "^\"\\${workspaceFolder}\"",
428427
"target": "^\"\\${file}\"",
429428
"env": {},
430-
"args": []
429+
"args": []
431430
}
432431
}
433432
]
@@ -449,25 +448,27 @@
449448
"ms-python.python"
450449
],
451450
"dependencies": {
452-
"vscode-debugadapter": "^1.46.0",
453-
"vscode-languageclient": "^7.0.0"
451+
"vscode-debugadapter": "^1.47.0",
452+
"vscode-debugprotocol": "^1.47.0",
453+
"vscode-languageclient": "^7.0.0",
454+
"vscode-languageserver-protocol": "^3.16.0"
454455
},
455456
"devDependencies": {
456457
"@types/glob": "^7.1.3",
457458
"@types/mocha": "^8.2.2",
458-
"@types/node": "^14.14.41",
459-
"@types/vscode": "^1.55.0",
460-
"@typescript-eslint/eslint-plugin": "^4.22.0",
461-
"@typescript-eslint/parser": "^4.22.0",
462-
"eslint": "^7.24.0",
463-
"glob": "^7.1.6",
459+
"@types/node": "^15.0.2",
460+
"@types/vscode": "^1.56.0",
461+
"@typescript-eslint/eslint-plugin": "^4.22.1",
462+
"@typescript-eslint/parser": "^4.22.1",
463+
"eslint": "^7.25.0",
464+
"glob": "^7.1.7",
464465
"mocha": "^8.3.2",
465-
"ts-loader": "^8.1.0",
466+
"ts-loader": "^9.1.2",
466467
"typescript": "^4.2.4",
467-
"vsce": "^1.87.1",
468-
"vscode-debugadapter-testsupport": "^1.46.0",
468+
"vsce": "^1.88.0",
469+
"vscode-debugadapter-testsupport": "^1.47.0",
469470
"vscode-test": "^1.5.2",
470-
"webpack": "^5.33.2",
471-
"webpack-cli": "^4.6.0"
471+
"webpack": "^5.36.2",
472+
"webpack-cli": "^4.7.0"
472473
}
473474
}

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class RobotCodeDebugConfigurationProvider implements vscode.DebugConfigurationPr
217217
if (!debugConfiguration.env) debugConfiguration.env = {};
218218
debugConfiguration.env = Object.assign({}, config.get<Object>("robot.env", {}), debugConfiguration.env);
219219

220-
if (debugConfiguration.attachPython == undefined) debugConfiguration.attachPython = true;
220+
if (debugConfiguration.attachPython == undefined) debugConfiguration.attachPython = false;
221221

222222
if (debugConfiguration.noDebug) {
223223
debugConfiguration.attachPython = false;

0 commit comments

Comments
 (0)