Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
spoenemann committed Dec 23, 2022
1 parent c66e59b commit fa9c9ac
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 49 deletions.
88 changes: 50 additions & 38 deletions examples/states-langium/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"url": "https://github.com/TypeFox/sprotty-vscode",
"directory": "examples/states-langium/extension"
},
"version": "0.4.0",
"version": "0.5.0",
"engines": {
"vscode": "^1.46.0"
},
Expand All @@ -18,43 +18,55 @@
],
"icon": "icon.png",
"contributes": {
"languages": [{
"id": "states",
"aliases": [
"states",
"sm"
],
"extensions": [
".sm"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "states",
"scopeName": "source.states",
"path": "./syntaxes/states.tmLanguage.json"
}],
"customEditors": [{
"viewType": "states",
"displayName": "States Editor",
"selector": [{
"filenamePattern": "*.sm"
}],
"priority": "option"
}],
"languages": [
{
"id": "states",
"aliases": [
"states",
"sm"
],
"extensions": [
".sm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "states",
"scopeName": "source.states",
"path": "./syntaxes/states.tmLanguage.json"
}
],
"customEditors": [
{
"viewType": "states",
"displayName": "States Editor",
"selector": [
{
"filenamePattern": "*.sm"
}
],
"priority": "option"
}
],
"viewsContainers": {
"activitybar": [{
"id": "states-container",
"title": "States",
"icon": "$(symbol-structure)"
}]
"activitybar": [
{
"id": "states-container",
"title": "States",
"icon": "$(symbol-structure)"
}
]
},
"views": {
"states-container": [{
"id": "states",
"type": "webview",
"name": "State Machine"
}]
"states-container": [
{
"id": "states",
"type": "webview",
"name": "State Machine"
}
]
},
"commands": [
{
Expand Down Expand Up @@ -175,9 +187,9 @@
"@types/node": "^12.12.6",
"@types/vscode": "1.50.0",
"source-map-loader": "^3.0.0",
"sprotty-vscode": "0.4.0",
"states-language-server": "0.4.0",
"states-sprotty-webview": "0.4.0",
"sprotty-vscode": "^0.5.0",
"states-language-server": "^0.5.0",
"states-sprotty-webview": "^0.5.0",
"ts-loader": "^9.2.6",
"typescript": "~4.6.2",
"vscode-languageclient": "^8.0.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/states-langium/language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "states-language-server",
"displayName": "states-langium",
"description": "Please enter a brief description here",
"version": "0.4.0",
"version": "0.5.0",
"private": true,
"dependencies": {
"langium": "^1.0.1",
Expand Down
4 changes: 2 additions & 2 deletions examples/states-webview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "states-sprotty-webview",
"version": "0.4.0",
"version": "0.5.0",
"description": "Example of a Sprotty diagram in a VS Code extensions (WebView part)",
"private": true,
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
Expand Down Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"reflect-metadata": "^0.1.13",
"sprotty": "^0.13.0",
"sprotty-vscode-webview": "0.4.0"
"sprotty-vscode-webview": "^0.5.0"
},
"devDependencies": {
"css-loader": "^6.5.1",
Expand Down
6 changes: 3 additions & 3 deletions examples/states-xtext/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "git",
"url": "https://github.com/TypeFox/sprotty-vscode"
},
"version": "0.4.0",
"version": "0.5.0",
"engines": {
"vscode": "^1.46.0"
},
Expand Down Expand Up @@ -153,8 +153,8 @@
"@types/node": "^12.12.6",
"@types/vscode": "1.50.0",
"source-map-loader": "^3.0.0",
"sprotty-vscode": "0.4.0",
"states-sprotty-webview": "0.4.0",
"sprotty-vscode": "^0.5.0",
"states-sprotty-webview": "^0.5.0",
"ts-loader": "^9.2.6",
"typescript": "~4.6.2",
"vscode-languageclient": "^8.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/sprotty-vscode-protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sprotty-vscode-protocol",
"version": "0.4.0",
"version": "0.5.0",
"displayName": "Sprotty VSCode Integration - Protocol between webview and extension",
"description": "Glue code to integrate Sprotty diagrams in VSCode extensions (protocol part)",
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
Expand Down
4 changes: 2 additions & 2 deletions packages/sprotty-vscode-webview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sprotty-vscode-webview",
"version": "0.4.0",
"version": "0.5.0",
"description": "Integration of Sprotty in a VS Code extensions (WebView part)",
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
"keywords": [
Expand Down Expand Up @@ -41,7 +41,7 @@
"types": "lib/index",
"dependencies": {
"sprotty": "~0.13.0",
"sprotty-vscode-protocol": "~0.4.0",
"sprotty-vscode-protocol": "^0.5.0",
"vscode-messenger-webview": "^0.4.3",
"vscode-uri": "^3.0.6"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/sprotty-vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sprotty-vscode",
"version": "0.4.0",
"version": "0.5.0",
"displayName": "Sprotty VSCode Integration",
"description": "Glue code to integrate Sprotty diagrams in VSCode extensions (extension part)",
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
Expand Down Expand Up @@ -44,7 +44,7 @@
"types": "lib/index",
"dependencies": {
"path": "^0.12.7",
"sprotty-vscode-protocol": "~0.4.0",
"sprotty-vscode-protocol": "^0.5.0",
"vscode-languageclient": "^8.0.2",
"vscode-messenger": "^0.4.4"
},
Expand Down

0 comments on commit fa9c9ac

Please sign in to comment.