Skip to content

Commit

Permalink
Updated monaco-editor-wrapper to the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Jul 2, 2024
1 parent bbd095b commit 1a28f2c
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
6 changes: 3 additions & 3 deletions packages/generator-langium/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "~7.13.0",
"@typescript-eslint/eslint-plugin": "~7.13.0",
"@typescript-eslint/parser": "~7.15.0",
"@typescript-eslint/eslint-plugin": "~7.15.0",
"eslint": "~8.57.0",
"shx": "~0.3.4",
"typescript": "~5.4.5"
"typescript": "~5.5.3"
},
"volta": {
"node": "18.20.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"devDependencies": {
"@types/vscode": "~1.67.0",
"concurrently": "~8.2.1",
"esbuild": "~0.21.5"
"concurrently": "~8.2.2",
"esbuild": "~0.23.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"langium:watch": "langium generate --watch"
},
"dependencies": {
"langium": "~3.0.0"
"langium": "~3.1.1"
},
"devDependencies": {
"langium-cli": "~3.0.3"
"langium-cli": "~3.1.0"
},
"volta": {
"node": "18.20.3",
Expand Down
14 changes: 7 additions & 7 deletions packages/generator-langium/templates/packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
"serve": "vite preview"
},
"dependencies": {
"@codingame/monaco-vscode-editor-service-override": "~5.2.0",
"@codingame/monaco-vscode-keybindings-service-override": "~5.2.0",
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~5.2.0",
"monaco-editor-wrapper": "~5.2.0",
"monaco-languageclient": "~8.5.0",
"vscode": "npm:@codingame/monaco-vscode-api@~5.2.0"
"@codingame/monaco-vscode-editor-service-override": "~6.0.3",
"@codingame/monaco-vscode-keybindings-service-override": "~6.0.3",
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~6.0.3",
"monaco-editor-wrapper": "~5.3.1",
"monaco-languageclient": "~8.6.0",
"vscode": "npm:@codingame/monaco-vscode-api@~6.0.3"
},
"devDependencies": {
"@codingame/esbuild-import-meta-url-plugin": "~1.0.2",
"vite": "~5.2.13"
"vite": "~5.3.2"
},
"volta": {
"node": "18.20.3",
Expand Down
24 changes: 12 additions & 12 deletions packages/generator-langium/test/yeoman-generator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,11 @@ const PACKAGE_JSON_EXPECTATION: Record<string, any> = {
},
'devDependencies': {
'@types/node': '^18.0.0',
'@typescript-eslint/eslint-plugin': '~7.13.0',
'@typescript-eslint/parser': '~7.13.0',
'@typescript-eslint/eslint-plugin': '~7.15.0',
'@typescript-eslint/parser': '~7.15.0',
'eslint': '~8.57.0',
'shx': '~0.3.4',
'typescript': '~5.4.5'
'typescript': '~5.5.3'
},
volta: {
'node': '18.20.3',
Expand Down Expand Up @@ -317,16 +317,16 @@ const PACKAGE_JSON_EXPECTATION_WEB: Record<string, any> = {
'serve': 'vite preview'
},
dependencies: {
'@codingame/monaco-vscode-editor-service-override': '~5.2.0',
'@codingame/monaco-vscode-keybindings-service-override': '~5.2.0',
'monaco-editor': 'npm:@codingame/monaco-vscode-editor-api@~5.2.0',
'monaco-editor-wrapper': '~5.2.0',
'monaco-languageclient': '~8.5.0',
'vscode': 'npm:@codingame/monaco-vscode-api@~5.2.0'
'@codingame/monaco-vscode-editor-service-override': '~6.0.3',
'@codingame/monaco-vscode-keybindings-service-override': '~6.0.3',
'monaco-editor': 'npm:@codingame/monaco-vscode-editor-api@~6.0.3',
'monaco-editor-wrapper': '~5.3.1',
'monaco-languageclient': '~8.6.0',
'vscode': 'npm:@codingame/monaco-vscode-api@~6.0.3'
},
devDependencies: {
'@codingame/esbuild-import-meta-url-plugin': '~1.0.2',
'vite': '~5.2.13'
'vite': '~5.3.2'
},
volta: {
node: '18.20.3',
Expand Down Expand Up @@ -377,8 +377,8 @@ const PACKAGE_JSON_EXPECTATION_EXTENSION: Record<string, any> = {
},
devDependencies: {
'@types/vscode': '~1.67.0',
'concurrently': '~8.2.1',
'esbuild': '~0.21.5'
'concurrently': '~8.2.2',
'esbuild': '~0.23.0'
}
};

Expand Down

0 comments on commit 1a28f2c

Please sign in to comment.