aws / language-servers

AWS related Language Servers
Apache License 2.0
23 stars 18 forks source link

Export proxy servers as well #353

Closed ege0zcan closed 3 months ago

ege0zcan commented 3 months ago

Problem

Currently the package doesn't export proxy servers, running the following is failing when I run npm pack and test:

const assert = require('assert')
import {CodeWhispererSecurityScanServerTokenProxy, CodeWhispererServerIAM,CodeWhispererServerIAMProxy, CodeWhispererServerToken, CodeWhispererServerTokenProxy, QChatServer, QChatServerProxy, SecurityScanServerToken} from '@aws/lsp-codewhisperer'

assert.ok(CodeWhispererServerIAMProxy)
assert.ok(CodeWhispererServerTokenProxy)
assert.ok(CodeWhispererSecurityScanServerTokenProxy)
assert.ok(QChatServerProxy)

Solution

Export proxy servers as well

License

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.