Skip to content

Commit

Permalink
Remove deprecated extensions
Browse files Browse the repository at this point in the history
Removes deprecated extensions from both the `browser` and `electron` examples.

Signed-off-by: Vincent Fugnitto <vincent.fugnitto@ericsson.com>
  • Loading branch information
vince-fugnitto committed Mar 1, 2020
1 parent d49ff91 commit 3594d1f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 19 deletions.
16 changes: 7 additions & 9 deletions templates/app-browser-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,17 @@
"version": "<%= params.version %>",
"dependencies": {
"@theia/core": "<%= params.theiaVersion %>",
"@theia/filesystem": "<%= params.theiaVersion %>",
"@theia/workspace": "<%= params.theiaVersion %>",
"@theia/preferences": "<%= params.theiaVersion %>",
"@theia/navigator": "<%= params.theiaVersion %>",
"@theia/process": "<%= params.theiaVersion %>",
"@theia/terminal": "<%= params.theiaVersion %>",
"@theia/editor": "<%= params.theiaVersion %>",
"@theia/filesystem": "<%= params.theiaVersion %>",
"@theia/languages": "<%= params.theiaVersion %>",
"@theia/markers": "<%= params.theiaVersion %>",
"@theia/monaco": "<%= params.theiaVersion %>",
"@theia/textmate-grammars": "<%= params.theiaVersion %>",
"@theia/typescript": "<%= params.theiaVersion %>",
"@theia/messages": "<%= params.theiaVersion %>",
"@theia/monaco": "<%= params.theiaVersion %>",
"@theia/navigator": "<%= params.theiaVersion %>",
"@theia/preferences": "<%= params.theiaVersion %>",
"@theia/process": "<%= params.theiaVersion %>",
"@theia/terminal": "<%= params.theiaVersion %>",
"@theia/workspace": "<%= params.theiaVersion %>",
"<%= params.extensionName %>": "<%= params.version %>"
},
"devDependencies": {
Expand Down
18 changes: 8 additions & 10 deletions templates/app-electron-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,18 @@
"version": "<%= params.version %>",
"dependencies": {
"@theia/core": "<%= params.theiaVersion %>",
"@theia/filesystem": "<%= params.theiaVersion %>",
"@theia/workspace": "<%= params.theiaVersion %>",
"@theia/preferences": "<%= params.theiaVersion %>",
"@theia/navigator": "<%= params.theiaVersion %>",
"@theia/process": "<%= params.theiaVersion %>",
"@theia/terminal": "<%= params.theiaVersion %>",
"@theia/editor": "<%= params.theiaVersion %>",
"@theia/electron": "<%= params.theiaVersion %>",
"@theia/filesystem": "<%= params.theiaVersion %>",
"@theia/languages": "<%= params.theiaVersion %>",
"@theia/markers": "<%= params.theiaVersion %>",
"@theia/monaco": "<%= params.theiaVersion %>",
"@theia/textmate-grammars": "<%= params.theiaVersion %>",
"@theia/typescript": "<%= params.theiaVersion %>",
"@theia/messages": "<%= params.theiaVersion %>",
"@theia/electron": "<%= params.theiaVersion %>",
"@theia/monaco": "<%= params.theiaVersion %>",
"@theia/navigator": "<%= params.theiaVersion %>",
"@theia/preferences": "<%= params.theiaVersion %>",
"@theia/process": "<%= params.theiaVersion %>",
"@theia/terminal": "<%= params.theiaVersion %>",
"@theia/workspace": "<%= params.theiaVersion %>",
"<%= params.extensionName %>": "<%= params.version %>"
},
"devDependencies": {
Expand Down

0 comments on commit 3594d1f

Please sign in to comment.