Skip to content

Commit 9e3bb4b

Browse files
authored
Merge pull request #275 from microsoft/roblou/soft-flea
v1.58.0-pre.0
2 parents 42f6540 + 49280d8 commit 9e3bb4b

File tree

8 files changed

+168
-99
lines changed

8 files changed

+168
-99
lines changed

adapter/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugadapter",
33
"description": "Debug adapter implementation for node",
4-
"version": "1.57.0",
4+
"version": "1.58.0-pre.0",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -21,7 +21,7 @@
2121
},
2222
"typings": "./lib/main",
2323
"dependencies": {
24-
"@vscode/debugprotocol": "1.57.0"
24+
"@vscode/debugprotocol": "1.58.0-pre.0"
2525
},
2626
"devDependencies": {
2727
"@types/mocha": "^9.1.0",

debugProtocol.json

Lines changed: 155 additions & 91 deletions
Large diffs are not rendered by default.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"protocol",
55
"testSupport"
66
],
7-
"version": "1.57.0"
7+
"version": "1.58.0-pre.0"
88
}

protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugprotocol",
33
"description": "Npm module with declarations for the Visual Studio Code debug protocol",
4-
"version": "1.57.0",
4+
"version": "1.58.0-pre.0",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {

protocol/src/generator.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,11 @@ function objectType(prop: any): string {
224224
s += closeBlock('}', false);
225225
return s;
226226
}
227+
228+
if (typeof prop.additionalProperties === 'boolean') {
229+
return `{ [key: string]: any; }`;
230+
}
231+
227232
if (prop.additionalProperties) {
228233
return `{ [key: string]: ${orType(prop.additionalProperties.type)}; }`;
229234
}

testSupport/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testSupport/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugadapter-testsupport",
33
"description": "Npm module with mocha test support for Visual Studio Code debug adapters",
4-
"version": "1.57.0",
4+
"version": "1.58.0-pre.0",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"engines": {
@@ -17,7 +17,7 @@
1717
"main": "./lib/main.js",
1818
"typings": "./lib/main",
1919
"dependencies": {
20-
"@vscode/debugprotocol": "1.57.0"
20+
"@vscode/debugprotocol": "1.58.0-pre.0"
2121
},
2222
"devDependencies": {
2323
"@types/node": "14.x"

0 commit comments

Comments
 (0)