PT #162599228: Upgrade to Theia 0.3.19

This commit is contained in:
BoykoAlex
2019-02-03 17:29:54 -05:00
parent 1118725c10
commit 040929ae9b
13 changed files with 1397 additions and 1333 deletions

View File

@@ -22,9 +22,9 @@
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "browser"

View File

@@ -22,9 +22,9 @@
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "electron"

File diff suppressed because it is too large Load Diff

View File

@@ -22,9 +22,9 @@
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "browser"

View File

@@ -22,9 +22,9 @@
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "electron"

File diff suppressed because it is too large Load Diff

View File

@@ -22,9 +22,9 @@
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "browser"

View File

@@ -22,9 +22,9 @@
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "electron"

File diff suppressed because it is too large Load Diff

View File

@@ -5,26 +5,28 @@
"dependencies": {
"@pivotal-tools/theia-spring-boot": "^0.0.2",
"@theia/core": "latest",
"@theia/editor": "latest",
"@theia/filesystem": "latest",
"@theia/languages": "latest",
"@theia/markers": "latest",
"@theia/messages": "latest",
"@theia/monaco": "latest",
"@theia/navigator": "latest",
"@theia/workspace": "latest",
"@theia/preferences": "latest",
"@theia/navigator": "latest",
"@theia/process": "latest",
"@theia/terminal": "latest",
"@theia/editor": "latest",
"@theia/languages": "latest",
"@theia/markers": "latest",
"@theia/monaco": "latest",
"@theia/typescript": "latest",
"@theia/workspace": "latest"
"@theia/messages": "latest",
"@theia/java": "latest",
"@theia/textmate-grammars": "latest"
},
"devDependencies": {
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "browser"

View File

@@ -5,26 +5,28 @@
"dependencies": {
"@pivotal-tools/theia-spring-boot": "^0.0.2",
"@theia/core": "latest",
"@theia/editor": "latest",
"@theia/filesystem": "latest",
"@theia/languages": "latest",
"@theia/markers": "latest",
"@theia/messages": "latest",
"@theia/monaco": "latest",
"@theia/navigator": "latest",
"@theia/workspace": "latest",
"@theia/preferences": "latest",
"@theia/navigator": "latest",
"@theia/process": "latest",
"@theia/terminal": "latest",
"@theia/editor": "latest",
"@theia/languages": "latest",
"@theia/markers": "latest",
"@theia/monaco": "latest",
"@theia/typescript": "latest",
"@theia/workspace": "latest"
"@theia/messages": "latest",
"@theia/java": "latest",
"@theia/textmate-grammars": "latest"
},
"devDependencies": {
"@theia/cli": "latest"
},
"scripts": {
"prepare": "theia build",
"prepare": "theia build --mode development",
"start": "theia start",
"watch": "theia build --watch"
"watch": "theia build --watch --mode development"
},
"theia": {
"target": "electron"

View File

@@ -93,6 +93,7 @@ export class SpringBootClientContribution extends StsLanguageClientContribution<
return [
'**/*.java',
'**/application*.yml',
'**/application*.yaml',
'**/bootstrap*.yml',
'**/application*.properties',
'**/bootstrap*.properties'

File diff suppressed because it is too large Load Diff