-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
plugin-dev - fix run/debug flow to work on windows
- use fileSystem.getFsPath utility for HOSTED_PLUGIN as it also supports windows - fixed typos (one in HostedInstanceState enum is added to changelog) - removed member `processOptions` from `AbstractHostedInstanceManager` as it is not initialized or used (changelog updated) - add missing dependencies in package.json Signed-off-by: Amiram Wingarten <amiram.wingarten@sap.com>
- Loading branch information
Showing
6 changed files
with
87 additions
and
72 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
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 |
---|---|---|
@@ -1,52 +1,55 @@ | ||
{ | ||
"name": "@theia/plugin-dev", | ||
"version": "0.8.0", | ||
"description": "Theia - Plugin Development Extension", | ||
"main": "lib/common/index.js", | ||
"typings": "lib/common/index.d.ts", | ||
"dependencies": { | ||
"@theia/core": "^0.8.0", | ||
"@theia/plugin-ext": "^0.8.0", | ||
"@theia/preferences": "^0.8.0", | ||
"ps-tree": "1.1.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"theiaExtensions": [ | ||
{ | ||
"backend": "lib/node/plugin-dev-backend-module", | ||
"backendElectron": "lib/node-electron/plugin-dev-electron-backend-module", | ||
"frontend": "lib/browser/plugin-dev-frontend-module" | ||
} | ||
], | ||
"keywords": [ | ||
"theia-extension" | ||
], | ||
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/theia-ide/theia.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/theia-ide/theia/issues" | ||
}, | ||
"homepage": "https://github.com/theia-ide/theia", | ||
"files": [ | ||
"lib", | ||
"src" | ||
], | ||
"scripts": { | ||
"prepare": "yarn run clean && yarn run build", | ||
"clean": "theiaext clean", | ||
"build": "theiaext build", | ||
"watch": "theiaext watch", | ||
"test": "theiaext test" | ||
}, | ||
"devDependencies": { | ||
"@theia/ext-scripts": "^0.8.0" | ||
}, | ||
"nyc": { | ||
"extends": "../../configs/nyc.json" | ||
} | ||
} | ||
{ | ||
"name": "@theia/plugin-dev", | ||
"version": "0.8.0", | ||
"description": "Theia - Plugin Development Extension", | ||
"main": "lib/common/index.js", | ||
"typings": "lib/common/index.d.ts", | ||
"dependencies": { | ||
"@theia/core": "^0.8.0", | ||
"@theia/workspace": "^0.8.0", | ||
"@theia/filesystem": "^0.8.0", | ||
"@theia/plugin-ext": "^0.8.0", | ||
"@theia/debug": "^0.8.0", | ||
"@theia/preferences": "^0.8.0", | ||
"ps-tree": "1.1.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"theiaExtensions": [ | ||
{ | ||
"backend": "lib/node/plugin-dev-backend-module", | ||
"backendElectron": "lib/node-electron/plugin-dev-electron-backend-module", | ||
"frontend": "lib/browser/plugin-dev-frontend-module" | ||
} | ||
], | ||
"keywords": [ | ||
"theia-extension" | ||
], | ||
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/theia-ide/theia.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/theia-ide/theia/issues" | ||
}, | ||
"homepage": "https://github.com/theia-ide/theia", | ||
"files": [ | ||
"lib", | ||
"src" | ||
], | ||
"scripts": { | ||
"prepare": "yarn run clean && yarn run build", | ||
"clean": "theiaext clean", | ||
"build": "theiaext build", | ||
"watch": "theiaext watch", | ||
"test": "theiaext test" | ||
}, | ||
"devDependencies": { | ||
"@theia/ext-scripts": "^0.8.0" | ||
}, | ||
"nyc": { | ||
"extends": "../../configs/nyc.json" | ||
} | ||
} |
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