Skip to content

Commit f886d3c

Browse files
committed
Improve bare example makes use of language client wrapper, add JavaScript support to TypeScript example
1 parent aa60ed6 commit f886d3c

File tree

11 files changed

+280
-45
lines changed

11 files changed

+280
-45
lines changed

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,5 @@
2020
"[json]": {
2121
"editor.defaultFormatter": "vscode.json-language-features"
2222
},
23-
"terminal.integrated.scrollback": 10000,
24-
"vitest.disableWorkspaceWarning": true
23+
"terminal.integrated.scrollback": 10000
2524
}

package-lock.json

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

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"http-server": "~14.1.1",
3636
"minimatch": "~10.0.1",
3737
"playwright": "~1.51.1",
38+
"shx": "~0.4.0",
3839
"typescript": "~5.8.2",
3940
"tsx": "~4.19.3",
4041
"vite": "~6.2.4",
@@ -64,7 +65,7 @@
6465
"start:example:server:json": "npm run start:server:json --workspace packages/examples",
6566
"start:example:server:python": "npm run start:server:python --workspace packages/examples",
6667
"release:prepare": "npm run reset:repo && npm ci && npm run build && npm run lint && npm run test:run",
67-
"reset:chrome": "tsx ./scripts/clean.ts --relativePath . --recursive --paths .chrome",
68+
"reset:chrome": "shx rm -fr ./.chrome",
6869
"reset:repo": "git clean -f -d -x --exclude=.chrome",
6970
"test": "npm run test:install && npm run test:direct",
7071
"test:direct": "vitest --config vitest.config.ts",

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"vscode-languageclient": "~9.0.1"
9191
},
9292
"scripts": {
93-
"clean": "tsx ../../scripts/clean.ts --relativePath packages/client --recursive --paths lib *.tsbuildinfo",
93+
"clean": "shx rm -fr ./lib *.tsbuildinfo",
9494
"compile": "tsc --build tsconfig.src.json",
9595
"build:msg": "echo Building monaco-languageclient:",
9696
"build": "npm run build:msg && npm run clean && npm run compile"

0 commit comments

Comments
 (0)