Skip to content

Commit be665bb

Browse files
committed
reorganize code
1 parent 894a283 commit be665bb

File tree

7 files changed

+852
-665
lines changed

7 files changed

+852
-665
lines changed

package.json

Lines changed: 16 additions & 9 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.56.0"
13+
"vscode": "^1.57.0"
1414
},
1515
"categories": [
1616
"Programming Languages",
@@ -20,12 +20,15 @@
2020
"Linters"
2121
],
2222
"keywords": [
23+
"Test",
2324
"Testing",
2425
"RobotFramework",
2526
"Robot Framework",
26-
"Robot"
27+
"Robot",
28+
"Keyword Driven"
2729
],
2830
"activationEvents": [
31+
"workspaceContains:**/*.robot",
2932
"onDebug",
3033
"onDebugAdapterProtocolTracker:robotframework",
3134
"onDebugInitialConfigurations",
@@ -490,22 +493,26 @@
490493
"test": "node ./out/test/runTest.js"
491494
},
492495
"extensionDependencies": [
493-
"ms-python.python"
496+
"ms-python.python",
497+
"hbenl.vscode-test-explorer"
494498
],
495499
"dependencies": {
496500
"open": "^8.2.0",
497501
"vscode-debugadapter": "^1.47.0",
498502
"vscode-debugprotocol": "^1.47.0",
499503
"vscode-languageclient": "^7.0.0",
500-
"vscode-languageserver-protocol": "^3.16.0"
504+
"vscode-languageserver-protocol": "^3.16.0",
505+
"vscode-test-adapter-api": "^1.9.0",
506+
"vscode-test-adapter-util": "^0.7.1"
501507
},
502508
"devDependencies": {
503509
"@types/glob": "^7.1.3",
504510
"@types/mocha": "^8.2.2",
505-
"@types/node": "^15.12.2",
506-
"@types/vscode": "^1.56.0",
507-
"@typescript-eslint/eslint-plugin": "^4.26.1",
508-
"@typescript-eslint/parser": "^4.26.1",
511+
"@types/node": "^15.12.2",
512+
"@types/open": "^6.2.1",
513+
"@types/vscode": "^1.57.0",
514+
"@typescript-eslint/eslint-plugin": "^4.27.0",
515+
"@typescript-eslint/parser": "^4.27.0",
509516
"eslint": "^7.28.0",
510517
"glob": "^7.1.7",
511518
"mocha": "^9.0.0",
@@ -514,7 +521,7 @@
514521
"vsce": "^1.93.0",
515522
"vscode-debugadapter-testsupport": "^1.47.0",
516523
"vscode-test": "^1.5.2",
517-
"webpack": "^5.38.1",
524+
"webpack": "^5.39.0",
518525
"webpack-cli": "^4.7.2"
519526
}
520527
}

vscode-client/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const CONFIG_SECTION = "robotcode";

0 commit comments

Comments
 (0)