-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#507 Implement
dispatchOnNextUpdate
for ActionDispatcher (#1)
- Implement `dispatchOnNextUpdate` for ActionDispatcher - Use the new API in the `CreateOperationHandler` to automatically select newly created nodes. Also: - Consume new @eclipse-glsp/mocha-config package and remove redundant devdependencies - Update debug config for workflow example - Add missing CHANGELOG.md file Contributed on behalf of STMicroelectronics Closes eclipse-glsp/glsp/issues/507
- Loading branch information
Showing
11 changed files
with
92 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
/** @type {import('eslint').Linter.Config} */ | ||
const year = new Date().getFullYear(); | ||
module.exports = { | ||
extends: '@eclipse-glsp', | ||
parserOptions: { | ||
tsconfigRootDir: __dirname, | ||
project: 'tsconfig.json' | ||
}, | ||
plugins: ['chai-friendly'], | ||
rules: { | ||
'no-shadow': 'off', | ||
'brace-style': 'off', | ||
'@typescript-eslint/no-this-alias': 'off', | ||
// chai friendly | ||
'no-unused-expressions': 0, | ||
'chai-friendly/no-unused-expressions': 2 | ||
'no-shadow': 'off' | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/mocharc", | ||
"require": ["ts-node/register", "reflect-metadata/Reflect"], | ||
"reporter": "spec", | ||
"color": true, | ||
"watch-files": ["*.ts", "*.tsx"], | ||
"timeout": 2000 | ||
"extends": "@eclipse-glsp/mocha-config" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Eclipse GLSP Server Node Changelog | ||
|
||
## v0.10.0- Upcoming | ||
|
||
Inception of the Node GLSP Server. | ||
This project provides the Node based server component for the Eclipse Graphical Language Platform (GLSP). | ||
The implementation of this server is aligned with the default Java based [GLSP Server](https://github.com/eclipse-glsp/glsp-server). | ||
The initial initial implementation was contributed on behalf of STMicroelectronics. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters