Skip to content

Commit

Permalink
Prepare monaco-languageclient 4.0.2 and vscode-ws-jsonrpc 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Dec 1, 2022
1 parent 3eb2cf7 commit d5fc52f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ There are a couple of different examples that demonstrate how the `monaco-langua

- The **browser** example located in [./packages/examples/browser](./packages/examples/browser) demonstrates how a [language service written in JavaScript](./packages/examples/browser/src/client.ts) can be used in a Monaco Editor contained in a simple HTML page. This example can now be considered legacy as the web worker option eases client side language server implementation and separation.

- The **react-client** example located in [./packages/examples/react-client](./packages/examples/react-client) contains the [React client](./packages/examples/react-client/src/main.tsx). It does the same as the regular client example but inside a React Functional Component.

- The **angular-client** example located in [./packages/examples/angular-client](./packages/examples/angular-client) contains the [Angular client](./packages/examples/angular-client/src/main.tsx). It does the same as the regular client example but inside an Angular Component.

## Verification

- The **webpack** verification example located in [./packages/verify/webpack](./packages/verify/webpack) demonstrates how bundling can be achieved with webpack. You find the configuration here: [webpack.config.js](./packages/verify/webpack/webpack.config.js).
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this npm module are documented in this file.

## [4.0.2] - 2022-12-01

- Changed the compile target and module to ES2022. Applied linting. Code was functionally not changed.
- Updated to `[email protected]`
- Added [react-client](../../packages/examples/react-client) and [angular-client](../../packages/examples/angular-client)

## [4.0.1] - 2022-10-19

- Update to monaco-editor 0.34.1 #[373](https://github.com/TypeFox/monaco-languageclient/pull/373)
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monaco-languageclient",
"version": "4.0.2-next.3",
"version": "4.0.2",
"description": "Monaco Language client implementation",
"author": {
"name": "TypeFox GmbH ",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/angular-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"private": "true",
"scripts": {
"clean": "npx shx rm -fr dist tsconfig.tsbuildinfo src/assets",
"lint": "eslint src --ext .ts",
"start": "npm run clean && npm run copy:codicon && ng serve",
"build:msg": "echo Building angular-client example:",
"build": "npm run build:msg && npm run clean && npm run copy:codicon && ng build ",
Expand Down
4 changes: 4 additions & 0 deletions packages/vscode-ws-jsonrpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this npm module are documented in this file.

## [2.0.1] - 2022-12-01

- Changed the compile target and module to ES2022. Applied linting. Code was functionally not changed.

## [2.0.0] - 2022-09-08

- **BREAKING**: Transform to package of type module and switch to TypeScript ECMAScript Module Support in Node.js.
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-ws-jsonrpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-ws-jsonrpc",
"version": "2.0.0",
"version": "2.0.1",
"description": "VSCode JSON RPC over WebSocket",
"author": {
"name": "TypeFox GmbH ",
Expand Down

0 comments on commit d5fc52f

Please sign in to comment.