Skip to content

Commit a63bc60

Browse files
committed
Updated angular project, added build tooling notice. Updated dependencies
1 parent 837e3b8 commit a63bc60

File tree

10 files changed

+1369
-3068
lines changed

10 files changed

+1369
-3068
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
"[json]": {
2121
"editor.defaultFormatter": "vscode.json-language-features"
2222
},
23-
"terminal.integrated.scrollback": 10000
23+
"terminal.integrated.scrollback": 10000,
24+
"editor.minimap.enabled": false
2425
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ None of the verification examples is part of the npm workspace. Some bring subst
226226

227227
- [Next.js verification example](./verify/next): demonstrates how to use `@typefox/monaco-editor-react` with Next.js, Please do: `cd verify/next && npm run verify`. It serves the client here: <http://localhost:8083>.
228228

229-
- [Angular verification example](./verify/angular): Before March 2024 this was located in [a separate repository](https://github.com/TypeFox/monaco-languageclient-ng-example). If you want to test it, Please do: `cd verify/angular && npm run verify`. It serves the client here: <http://localhost:8084>.
229+
- [Angular verification example](./verify/angular): If you want to test it, Please do: `cd verify/angular && npm run verify`. It serves the client here: <http://localhost:8084>. **Important**: `monaco-languageclient` currently does not support the angular build as it breaks the development and produstion build. We therefore use `@analogjs/vite-plugin-angular` which relies on vite.
230230

231231
### VSCode integration
232232

package-lock.json

Lines changed: 319 additions & 322 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"@codingame/monaco-vscode-rollup-vsix-plugin": "^25.0.0",
1515
"@eslint/eslintrc": "~3.3.3",
1616
"@eslint/js": "~9.39.2",
17-
"@oxlint/migrate": "~1.39.0",
17+
"@oxlint/migrate": "~1.41.0",
1818
"@stylistic/eslint-plugin": "~5.7.0",
19-
"@testing-library/react": "~16.3.1",
20-
"@types/node": "~24.10.8",
21-
"@types/react": "~19.2.8",
19+
"@testing-library/react": "~16.3.2",
20+
"@types/node": "~24.10.9",
21+
"@types/react": "~19.2.9",
2222
"@types/react-dom": "~19.2.3",
23-
"@typescript-eslint/eslint-plugin": "~8.53.0",
24-
"@typescript-eslint/parser": "~8.53.0",
25-
"@typescript/native-preview": "~7.0.0-dev.20260109.1",
23+
"@typescript-eslint/eslint-plugin": "~8.53.1",
24+
"@typescript-eslint/parser": "~8.53.1",
25+
"@typescript/native-preview": "~7.0.0-dev.20260120.1",
2626
"@vitest/browser": "~4.0.17",
2727
"@vitest/browser-playwright": "~4.0.17",
2828
"@vitest/coverage-v8": "~4.0.17",
@@ -34,8 +34,8 @@
3434
"eslint-plugin-unused-imports": "~4.3.0",
3535
"globals": "~17.0.0",
3636
"minimatch": "~10.1.1",
37-
"oxlint": "~1.39.0",
38-
"vite": "~8.0.0-beta.7",
37+
"oxlint": "~1.41.0",
38+
"vite": "~8.0.0-beta.8",
3939
"shx": "~0.4.0",
4040
"tsx": "~4.21.0",
4141
"typescript": "~5.9.3",

packages/examples/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
"react-dom": "~19.2.0",
130130
"request-light": "~0.8.0",
131131
"vscode": "npm:@codingame/monaco-vscode-extension-api@^25.0.0",
132-
"vscode-json-languageservice": "~5.6.4",
132+
"vscode-json-languageservice": "~5.7.1",
133133
"vscode-languageclient": "~9.0.1",
134134
"vscode-languageserver": "~9.0.1",
135135
"vscode-uri": "~3.1.0",
@@ -144,7 +144,7 @@
144144
"@types/ws": "~8.18.1",
145145
"langium-cli": "~4.1.0",
146146
"mini-coi": "~0.4.2",
147-
"vite-plugin-static-copy": "~3.1.4",
147+
"vite-plugin-static-copy": "~3.1.5",
148148
"vscode-languageserver-types": "~3.17.5"
149149
},
150150
"scripts": {

verify/angular/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Angular verification example
22

33
It serves on the client here: <http://localhost:8084>.
4+
5+
Important: `monaco-languageclient` currently does not support the angular build as it breaks the development and produstion build. We therefore use `@analogjs/vite-plugin-angular` which relies on vite.

0 commit comments

Comments
 (0)