Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Updated to vite 4.3 and bumped other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Apr 21, 2023
1 parent 8ebafe4 commit 419a844
Show file tree
Hide file tree
Showing 7 changed files with 399 additions and 405 deletions.
746 changes: 370 additions & 376 deletions package-lock.json

Large diffs are not rendered by default.

28 changes: 13 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,26 @@
},
"devDependencies": {
"@types/node": "~18.15.11",
"@types/react": "~18.0.33",
"@types/react-dom": "~18.0.11",
"@types/vscode": "~1.76.0",
"@typescript-eslint/eslint-plugin": "~5.57.1",
"@typescript-eslint/parser": "~5.57.1",
"@vitest/coverage-c8": "~0.29.8",
"@types/shelljs": "~0.8.11",
"@vitest/ui": "~0.29.8",
"eslint": "~8.37.0",
"@types/shelljs": "~0.8.12",
"@types/vscode": "~1.77.0",
"@typescript-eslint/eslint-plugin": "~5.59.0",
"@typescript-eslint/parser": "~5.59.0",
"@vitest/coverage-c8": "~0.30.1",
"@vitest/ui": "~0.30.1",
"eslint": "~8.38.0",
"editorconfig": "~1.0.2",
"path-browserify": "~1.0.1",
"shx": "~0.3.4",
"shelljs": "~0.8.5",
"tslib": "~2.5.0",
"typescript": "~5.0.3",
"vite": "~4.2.1",
"vite-node": "~0.29.8",
"vitest": "~0.29.8"
"typescript": "~5.0.4",
"vite": "~4.3.1",
"vite-node": "~0.30.1",
"vitest": "~0.30.1"
},
"volta": {
"node": "18.15.0",
"npm": "9.6.3"
"node": "18.16.0",
"npm": "9.6.5"
},
"workspaces": [
"packages/monaco-editor-wrapper",
Expand Down
8 changes: 6 additions & 2 deletions packages/examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@
"vscode-languageserver": "~8.1.0",
"vscode-json-languageservice": "~5.3.2"
},
"devDependencies": {
"@types/react": "~18.0.37",
"@types/react-dom": "~18.0.11"
},
"volta": {
"node": "18.15.0",
"npm": "9.6.3"
"node": "18.16.0",
"npm": "9.6.5"
},
"scripts": {
"clean": "npx shx rm -rf ./dist ./libs *.tsbuildinfo",
Expand Down
8 changes: 6 additions & 2 deletions packages/monaco-editor-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,18 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"volta": {
"node": "18.15.0",
"npm": "9.6.3"
"node": "18.16.0",
"npm": "9.6.5"
},
"peerDependencies": {
"monaco-editor-wrapper": "2.0.0-next.2",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"devDependencies": {
"@types/react": "~18.0.37",
"@types/react-dom": "~18.0.11"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeFox/monaco-components",
Expand Down
4 changes: 2 additions & 2 deletions packages/monaco-editor-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
"build": "npm run clean && npm run compile && npm run build:workers"
},
"volta": {
"node": "18.15.0",
"npm": "9.6.3"
"node": "18.16.0",
"npm": "9.6.5"
},
"devDependencies": {
"monaco-editor": "0.37.0"
Expand Down
8 changes: 2 additions & 6 deletions packages/monaco-editor-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,16 @@
"build": "npm run clean && npm run compile && npm run bundle"
},
"volta": {
"node": "18.15.0",
"npm": "9.6.3"
"node": "18.16.0",
"npm": "9.6.5"
},
"dependencies": {
"@types/css-font-loading-module": "~0.0.8",
"normalize-url": "~8.0.0"
},
"peerDependencies": {
"monaco-languageclient": "5.1.0-next.3",
"vscode-ws-jsonrpc": "3.0.0"
},
"devDependencies": {
"@types/glob-to-regexp": "~0.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeFox/monaco-components",
Expand Down
2 changes: 0 additions & 2 deletions packages/monaco-editor-wrapper/src/helpers/css.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import type { } from 'css-font-loading-module';

export const getMonacoEditoCss = async () => {
const res = await fetch(new URL('../../bundle/assets/style.css', window.location.href).href);
return res.text();
Expand Down

0 comments on commit 419a844

Please sign in to comment.