Skip to content

Commit fd92ea5

Browse files
Merge main into feature/hello-world-server
2 parents 758d362 + d06e09f commit fd92ea5

File tree

42 files changed

+114
-587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+114
-587
lines changed

app/aws-lsp-antlr4-runtimes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"webpack": "webpack"
1313
},
1414
"dependencies": {
15-
"@aws/language-server-runtimes": "^0.3.8",
15+
"@aws/language-server-runtimes": "^0.3.10",
1616
"@aws/lsp-antlr4": "*",
1717
"antlr4-c3": "^3.4.2",
1818
"antlr4ng": "^3.0.14"

app/aws-lsp-antlr4-runtimes/src/serverWithCustomization.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ const props: RuntimeProps = {
2626
servers: [ANTLR4LanguageServer],
2727
name: 'PostgreSQL',
2828
}
29-
standalone(props)
29+
;(async () => {
30+
await standalone(props)
31+
})()

app/aws-lsp-antlr4-runtimes/src/serverWithoutCustomization.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ const props: RuntimeProps = {
1414
],
1515
name: 'PostgreSQL',
1616
}
17-
standalone(props)
17+
;(async () => {
18+
await standalone(props)
19+
})()

app/aws-lsp-buildspec-runtimes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"compile": "tsc --build"
88
},
99
"dependencies": {
10-
"@aws/language-server-runtimes": "^0.3.8",
10+
"@aws/language-server-runtimes": "^0.3.10",
1111
"@aws/lsp-buildspec": "^0.0.1"
1212
}
1313
}

app/aws-lsp-cloudformation-runtimes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"compile": "tsc --build"
88
},
99
"dependencies": {
10-
"@aws/language-server-runtimes": "^0.3.8",
10+
"@aws/language-server-runtimes": "^0.3.10",
1111
"@aws/lsp-cloudformation": "^0.0.1"
1212
}
1313
}

app/aws-lsp-codewhisperer-runtimes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"local-build": "node scripts/local-build.js"
2424
},
2525
"dependencies": {
26-
"@aws/language-server-runtimes": "^0.3.8",
26+
"@aws/language-server-runtimes": "^0.3.10",
2727
"@aws/lsp-codewhisperer": "*",
2828
"copyfiles": "^2.4.1",
2929
"cross-env": "^7.0.3",

app/aws-lsp-codewhisperer-runtimes/src/agent-standalone.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,6 @@ const props = {
4949
name: 'AWS CodeWhisperer',
5050
} as RuntimeProps
5151

52-
standalone(props)
52+
;(async () => {
53+
await standalone(props)
54+
})()
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { standalone } from '@aws/language-server-runtimes/runtimes'
22
import { CodeWhispererServerIAM, QChatServerIAMProxy } from '@aws/lsp-codewhisperer'
33
import { createIAMRuntimeProps } from './standalone-common'
4+
import { RuntimeProps } from '@aws/language-server-runtimes/runtimes/runtime'
45

5-
const props = createIAMRuntimeProps('0.1.0', [CodeWhispererServerIAM, QChatServerIAMProxy])
6+
const props = createIAMRuntimeProps('0.1.0', [CodeWhispererServerIAM, QChatServerIAMProxy]) as RuntimeProps
67

7-
standalone(props)
8+
;(async () => {
9+
await standalone(props)
10+
})()

app/aws-lsp-codewhisperer-runtimes/src/token-standalone.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
} from '@aws/lsp-codewhisperer'
1313
import { IdentityServer } from '@aws/lsp-identity'
1414
import { createTokenRuntimeProps } from './standalone-common'
15+
import { RuntimeProps } from '@aws/language-server-runtimes/runtimes/runtime'
1516

1617
const MAJOR = 0
1718
const MINOR = 1
@@ -30,6 +31,8 @@ const props = createTokenRuntimeProps(VERSION, [
3031

3132
TransformConfigurationServerTokenProxy,
3233
AtxNetTransformServerTokenProxy as any,
33-
])
34+
]) as RuntimeProps
3435

35-
standalone(props)
36+
;(async () => {
37+
await standalone(props)
38+
})()

app/aws-lsp-identity-runtimes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"compile": "tsc --build"
88
},
99
"dependencies": {
10-
"@aws/language-server-runtimes": "^0.3.8",
10+
"@aws/language-server-runtimes": "^0.3.10",
1111
"@aws/lsp-identity": "^0.0.1"
1212
}
1313
}

0 commit comments

Comments
 (0)