Skip to content

Commit

Permalink
Merge pull request #809 from TypeFox/issue-789
Browse files Browse the repository at this point in the history
All monaco-vscode packages are peerDependencies
  • Loading branch information
kaisalmen authored Dec 18, 2024
2 parents 79dec55 + c54f405 commit 9c35a27
Show file tree
Hide file tree
Showing 25 changed files with 3,231 additions and 3,887 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ node_modules
*.tsbuildinfo
.angular
__screenshots__
.vscode/profile
.chrome/profile
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"request": "launch",
"url": "http://localhost:20001",
"webRoot": "${workspaceFolder}",
"userDataDir": "${workspaceFolder}/.vscode/profile"
"userDataDir": "${workspaceFolder/.chrome/profile"
},
{
"name": "Chrome Preview",
"type": "chrome",
"request": "launch",
"url": "http://localhost:20002",
"webRoot": "${workspaceFolder}/packages/examples/production",
"userDataDir": "${workspaceFolder}/.vscode/profile"
"userDataDir": "${workspaceFolder}/.chrome/profile"
},
{
"type": "node",
Expand Down
2 changes: 1 addition & 1 deletion docs/versions-and-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The following table describes which version of **monaco-languageclient** and **@

| monaco-languageclient | monaco-editor-wrapper | monaco-editor-react | monaco-vscode-api / editor-api | vscode | monaco-editor | release date | comment |
| :---- | :---- | :--- | :--- | :--- | :--- | :--- | :--- |
| 9.0.0-next.11 | 6.0.0-next.11 | 6.0.0-next.11 | 11.1.2 | 1.95.3 | 0.52.0 | 2024-12-17 | |
| 9.0.0-next.14 | 6.0.0-next.14 | 6.0.0-next.14 | 11.1.2 | 1.95.3 | 0.52.0 | 2024-12-18 | |
| 8.8.3 | 5.5.3 | 4.5.3 | 8.0.4 | 1.92.2 | 0.51.0 | 2024-08-26 | |
| 8.8.2 | 5.5.2 | 4.5.2 | 8.0.2 | 1.92.2 | 0.50.0 | 2024-08-21 | |
| 8.8.1 | 5.5.1 | 4.5.1 | 8.0.1 | 1.92.1 | 0.50.0 | 2024-08-12 | |
Expand Down
6,211 changes: 2,452 additions & 3,759 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"private": true,
"type": "module",
"engines": {
"node": ">=18.19.0",
"npm": ">=10.2.3"
},
"volta": {
"node": "22.12.0",
"npm": "10.9.0"
},
"devDependencies": {
"@codingame/esbuild-import-meta-url-plugin": "~1.0.2",
"@codingame/monaco-vscode-rollup-vsix-plugin": "~11.1.2",
Expand Down Expand Up @@ -31,10 +39,6 @@
"vite-node": "~2.1.8",
"vitest": "~2.1.8"
},
"volta": {
"node": "22.12.0",
"npm": "10.9.0"
},
"scripts": {
"clean": "npm run clean --workspaces",
"compile": "npm run compile --workspaces",
Expand Down Expand Up @@ -70,6 +74,6 @@
"packages/examples"
],
"overrides": {
"vite": "$vite"
"vite": "~6.0.3"
}
}
4 changes: 3 additions & 1 deletion packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

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

## [9.0.0-next.11] - 2024-11-2
## [9.0.0-next.14] - 2024-12-18

- Include all `@codingame/monaco-vscode` packages as peerDependencies. Mark only required ones as non-optional.
- Updated engine engine requirements for node to (`>=18.19.0`) and for npm to (`>=10.2.3`)
- Updated all `@codingame/monaco-vscode` packages to `11.1.2`.
- Workaround for `@codingame/monaco-vscode-chat-extensions-notebook-task-terminal-testing-common` dependency problem
- Run language clients independent of wrapper lifecycle [#784](https://github.com/TypeFox/monaco-languageclient/pull/784)
Expand Down
Loading

0 comments on commit 9c35a27

Please sign in to comment.