Skip to content

Commit

Permalink
Update all dependencies (#1164)
Browse files Browse the repository at this point in the history
* Update all dependencies, but ignore monaco-editor-wrapper, see #1163
* Fix eslint no-parameter-properties rule renamed to parameter-properties and fixed tests
  • Loading branch information
kaisalmen authored Aug 31, 2023
1 parent 3385b57 commit 7259652
Show file tree
Hide file tree
Showing 19 changed files with 3,750 additions and 1,761 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"@typescript-eslint/no-misused-new": "error", // no constructors for interfaces or new for classes
"@typescript-eslint/no-namespace": "off", // disallow the use of custom TypeScript modules and namespaces
"@typescript-eslint/no-non-null-assertion": "off", // allow ! operator
"@typescript-eslint/no-parameter-properties": "error", // no property definitions in class constructors
"@typescript-eslint/parameter-properties": "error", // no property definitions in class constructors
"@typescript-eslint/no-unused-vars": ["error", { // disallow Unused Variables
"argsIgnorePattern": "^_"
}],
Expand Down
10 changes: 5 additions & 5 deletions examples/arithmetics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,17 @@
},
"dependencies": {
"chalk": "~5.3.0",
"commander": "~10.0.0",
"commander": "~11.0.0",
"langium": "~2.0.0",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2"
"vscode-languageclient": "~8.1.0",
"vscode-languageserver": "~8.1.0"
},
"devDependencies": {
"langium-cli": "~2.0.0"
},
"volta": {
"node": "18.17.0",
"npm": "9.5.1"
"node": "18.17.1",
"npm": "9.6.7"
},
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions examples/domainmodel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@
},
"dependencies": {
"chalk": "~5.3.0",
"commander": "~10.0.0",
"commander": "~11.0.0",
"langium": "~2.0.0",
"lodash": "~4.17.21",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2"
"vscode-languageclient": "~8.1.0",
"vscode-languageserver": "~8.1.0"
},
"devDependencies": {
"langium-cli": "~2.0.0"
},
"volta": {
"node": "18.17.0",
"npm": "9.5.1"
"node": "18.17.1",
"npm": "9.6.7"
},
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions examples/requirements/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,18 @@
},
"dependencies": {
"chalk": "~5.3.0",
"commander": "~10.0.0",
"commander": "~11.0.0",
"langium": "~2.0.0",
"lodash": "~4.17.21",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2"
"vscode-languageclient": "~8.1.0",
"vscode-languageserver": "~8.1.0"
},
"devDependencies": {
"langium-cli": "~2.0.0"
},
"volta": {
"node": "18.17.0",
"npm": "9.5.1"
"node": "18.17.1",
"npm": "9.6.7"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions examples/statemachine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,16 @@
},
"dependencies": {
"chalk": "~5.3.0",
"commander": "~10.0.0",
"commander": "~11.0.0",
"langium": "~2.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"langium-cli": "~2.0.0"
},
"volta": {
"node": "18.17.0",
"npm": "9.5.1"
"node": "18.17.1",
"npm": "9.6.7"
},
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 7259652

Please sign in to comment.