From b92a5673de1e9d1bdc85e6200486b92394200579 Mon Sep 17 00:00:00 2001 From: Jacques Bouthillier Date: Thu, 31 Oct 2019 13:54:14 -0400 Subject: [PATCH] publish v0.12.0 Signed-off-by: Jacques Bouthillier --- dev-packages/application-manager/package.json | 8 +- dev-packages/application-package/package.json | 4 +- dev-packages/cli/package.json | 6 +- dev-packages/electron/package.json | 2 +- dev-packages/ext-scripts/package.json | 2 +- examples/browser/package.json | 94 +++++++++---------- examples/electron/package.json | 92 +++++++++--------- lerna.json | 2 +- packages/bunyan/package.json | 6 +- packages/callhierarchy/package.json | 12 +-- packages/console/package.json | 8 +- packages/core/package.json | 6 +- packages/cpp/package.json | 24 ++--- packages/debug-nodejs/package.json | 6 +- packages/debug/package.json | 38 ++++---- packages/editor-preview/package.json | 10 +- packages/editor/package.json | 10 +- packages/editorconfig/package.json | 12 +-- packages/extension-manager/package.json | 12 +-- packages/file-search/package.json | 14 +-- packages/filesystem/package.json | 8 +- packages/getting-started/package.json | 12 +-- packages/git/package.json | 18 ++-- packages/java-debug/package.json | 8 +- packages/java/package.json | 12 +-- packages/json/package.json | 12 +-- packages/keymaps/package.json | 12 +-- packages/languages/package.json | 12 +-- packages/markers/package.json | 12 +-- packages/merge-conflicts/package.json | 10 +- packages/messages/package.json | 6 +- packages/metrics/package.json | 8 +- packages/mini-browser/package.json | 8 +- packages/monaco/package.json | 18 ++-- packages/navigator/package.json | 10 +- packages/outline-view/package.json | 6 +- packages/output/package.json | 6 +- packages/plugin-dev/package.json | 18 ++-- packages/plugin-ext-vscode/package.json | 14 +-- packages/plugin-ext/package.json | 42 ++++----- packages/plugin/package.json | 4 +- packages/preferences/package.json | 18 ++-- packages/preview/package.json | 12 +-- packages/process/package.json | 6 +- packages/python/package.json | 12 +-- packages/scm/package.json | 12 +-- packages/search-in-workspace/package.json | 16 ++-- packages/task/package.json | 24 ++--- packages/terminal/package.json | 14 +-- packages/textmate-grammars/package.json | 6 +- packages/tslint/package.json | 4 +- packages/typehierarchy/package.json | 10 +- packages/typescript/package.json | 20 ++-- packages/userstorage/package.json | 8 +- packages/variable-resolver/package.json | 6 +- packages/workspace/package.json | 10 +- 56 files changed, 401 insertions(+), 401 deletions(-) diff --git a/dev-packages/application-manager/package.json b/dev-packages/application-manager/package.json index c1ed31b27c188..cfc71118057de 100644 --- a/dev-packages/application-manager/package.json +++ b/dev-packages/application-manager/package.json @@ -1,6 +1,6 @@ { "name": "@theia/application-manager", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia application manager API.", "publishConfig": { "access": "public" @@ -32,12 +32,12 @@ "@babel/plugin-transform-classes": "^7.5.5", "@babel/plugin-transform-runtime": "^7.5.5", "@babel/preset-env": "^7.5.5", - "@theia/application-package": "^0.11.0", + "@theia/application-package": "^0.12.0", + "@theia/compression-webpack-plugin": "^3.0.0", "@types/fs-extra": "^4.0.2", "babel-loader": "^8.0.6", "bunyan": "^1.8.10", "circular-dependency-plugin": "^5.0.0", - "@theia/compression-webpack-plugin": "^3.0.0", "copy-webpack-plugin": "^4.5.0", "css-loader": "^0.28.1", "electron-rebuild": "^1.8.6", @@ -56,7 +56,7 @@ "worker-loader": "^1.1.1" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/dev-packages/application-package/package.json b/dev-packages/application-package/package.json index 8adb41d76bf54..77f06827798a6 100644 --- a/dev-packages/application-package/package.json +++ b/dev-packages/application-package/package.json @@ -1,6 +1,6 @@ { "name": "@theia/application-package", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia application package API.", "publishConfig": { "access": "public" @@ -40,7 +40,7 @@ "write-json-file": "^2.2.0" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/dev-packages/cli/package.json b/dev-packages/cli/package.json index bdf01128e253a..76e7341c9ed5e 100644 --- a/dev-packages/cli/package.json +++ b/dev-packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@theia/cli", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia CLI.", "publishConfig": { "access": "public" @@ -30,8 +30,8 @@ "test": "echo 'skip'" }, "dependencies": { - "@theia/application-manager": "^0.11.0", - "@theia/application-package": "^0.11.0", + "@theia/application-manager": "^0.12.0", + "@theia/application-package": "^0.12.0", "yargs": "^11.1.0" } } diff --git a/dev-packages/electron/package.json b/dev-packages/electron/package.json index 68d85500b0d6d..9554fb449b496 100644 --- a/dev-packages/electron/package.json +++ b/dev-packages/electron/package.json @@ -1,6 +1,6 @@ { "name": "@theia/electron", - "version": "0.11.0", + "version": "0.12.0", "description": "Electron runtime dependencies for Theia", "publishConfig": { "access": "public" diff --git a/dev-packages/ext-scripts/package.json b/dev-packages/ext-scripts/package.json index a8d63921a5d0e..ad3914ff74400 100644 --- a/dev-packages/ext-scripts/package.json +++ b/dev-packages/ext-scripts/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@theia/ext-scripts", - "version": "0.11.0", + "version": "0.12.0", "license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", "description": "NPM scripts for Theia packages.", "files": [ diff --git a/examples/browser/package.json b/examples/browser/package.json index 52624e0e866ef..a26bbb6619e20 100644 --- a/examples/browser/package.json +++ b/examples/browser/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@theia/example-browser", - "version": "0.11.0", + "version": "0.12.0", "license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", "theia": { "frontend": { @@ -14,51 +14,51 @@ } }, "dependencies": { - "@theia/callhierarchy": "^0.11.0", - "@theia/console": "^0.11.0", - "@theia/core": "^0.11.0", - "@theia/cpp": "^0.11.0", - "@theia/debug": "^0.11.0", - "@theia/debug-nodejs": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/editor-preview": "^0.11.0", - "@theia/editorconfig": "^0.11.0", - "@theia/file-search": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/getting-started": "^0.11.0", - "@theia/git": "^0.11.0", - "@theia/java": "^0.11.0", - "@theia/java-debug": "^0.11.0", - "@theia/json": "^0.11.0", - "@theia/keymaps": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/markers": "^0.11.0", - "@theia/merge-conflicts": "^0.11.0", - "@theia/messages": "^0.11.0", - "@theia/metrics": "^0.11.0", - "@theia/mini-browser": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/navigator": "^0.11.0", - "@theia/outline-view": "^0.11.0", - "@theia/output": "^0.11.0", - "@theia/plugin-dev": "^0.11.0", - "@theia/plugin-ext": "^0.11.0", - "@theia/plugin-ext-vscode": "^0.11.0", - "@theia/preferences": "^0.11.0", - "@theia/preview": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/python": "^0.11.0", - "@theia/scm": "^0.11.0", - "@theia/search-in-workspace": "^0.11.0", - "@theia/task": "^0.11.0", - "@theia/terminal": "^0.11.0", - "@theia/textmate-grammars": "^0.11.0", - "@theia/tslint": "^0.11.0", - "@theia/typehierarchy": "^0.11.0", - "@theia/typescript": "^0.11.0", - "@theia/userstorage": "^0.11.0", - "@theia/variable-resolver": "^0.11.0", - "@theia/workspace": "^0.11.0" + "@theia/callhierarchy": "^0.12.0", + "@theia/console": "^0.12.0", + "@theia/core": "^0.12.0", + "@theia/cpp": "^0.12.0", + "@theia/debug": "^0.12.0", + "@theia/debug-nodejs": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/editor-preview": "^0.12.0", + "@theia/editorconfig": "^0.12.0", + "@theia/file-search": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/getting-started": "^0.12.0", + "@theia/git": "^0.12.0", + "@theia/java": "^0.12.0", + "@theia/java-debug": "^0.12.0", + "@theia/json": "^0.12.0", + "@theia/keymaps": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/markers": "^0.12.0", + "@theia/merge-conflicts": "^0.12.0", + "@theia/messages": "^0.12.0", + "@theia/metrics": "^0.12.0", + "@theia/mini-browser": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/navigator": "^0.12.0", + "@theia/outline-view": "^0.12.0", + "@theia/output": "^0.12.0", + "@theia/plugin-dev": "^0.12.0", + "@theia/plugin-ext": "^0.12.0", + "@theia/plugin-ext-vscode": "^0.12.0", + "@theia/preferences": "^0.12.0", + "@theia/preview": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/python": "^0.12.0", + "@theia/scm": "^0.12.0", + "@theia/search-in-workspace": "^0.12.0", + "@theia/task": "^0.12.0", + "@theia/terminal": "^0.12.0", + "@theia/textmate-grammars": "^0.12.0", + "@theia/tslint": "^0.12.0", + "@theia/typehierarchy": "^0.12.0", + "@theia/typescript": "^0.12.0", + "@theia/userstorage": "^0.12.0", + "@theia/variable-resolver": "^0.12.0", + "@theia/workspace": "^0.12.0" }, "scripts": { "prepare": "yarn run clean && yarn build", @@ -76,6 +76,6 @@ "coverage": "yarn coverage:compile && yarn test && yarn coverage:remap && yarn coverage:report:lcov && yarn coverage:report:html" }, "devDependencies": { - "@theia/cli": "^0.11.0" + "@theia/cli": "^0.12.0" } } diff --git a/examples/electron/package.json b/examples/electron/package.json index 1c88b2c987b77..d0c653d9181df 100644 --- a/examples/electron/package.json +++ b/examples/electron/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@theia/example-electron", - "version": "0.11.0", + "version": "0.12.0", "license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", "theia": { "target": "electron", @@ -12,50 +12,50 @@ } }, "dependencies": { - "@theia/callhierarchy": "^0.11.0", - "@theia/console": "^0.11.0", - "@theia/core": "^0.11.0", - "@theia/cpp": "^0.11.0", - "@theia/debug": "^0.11.0", - "@theia/debug-nodejs": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/editor-preview": "^0.11.0", - "@theia/editorconfig": "^0.11.0", - "@theia/file-search": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/getting-started": "^0.11.0", - "@theia/git": "^0.11.0", - "@theia/java": "^0.11.0", - "@theia/java-debug": "^0.11.0", - "@theia/json": "^0.11.0", - "@theia/keymaps": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/markers": "^0.11.0", - "@theia/merge-conflicts": "^0.11.0", - "@theia/messages": "^0.11.0", - "@theia/metrics": "^0.11.0", - "@theia/mini-browser": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/navigator": "^0.11.0", - "@theia/outline-view": "^0.11.0", - "@theia/output": "^0.11.0", - "@theia/plugin-dev": "^0.11.0", - "@theia/plugin-ext": "^0.11.0", - "@theia/plugin-ext-vscode": "^0.11.0", - "@theia/preferences": "^0.11.0", - "@theia/preview": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/python": "^0.11.0", - "@theia/search-in-workspace": "^0.11.0", - "@theia/task": "^0.11.0", - "@theia/terminal": "^0.11.0", - "@theia/textmate-grammars": "^0.11.0", - "@theia/tslint": "^0.11.0", - "@theia/typehierarchy": "^0.11.0", - "@theia/typescript": "^0.11.0", - "@theia/userstorage": "^0.11.0", - "@theia/variable-resolver": "^0.11.0", - "@theia/workspace": "^0.11.0" + "@theia/callhierarchy": "^0.12.0", + "@theia/console": "^0.12.0", + "@theia/core": "^0.12.0", + "@theia/cpp": "^0.12.0", + "@theia/debug": "^0.12.0", + "@theia/debug-nodejs": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/editor-preview": "^0.12.0", + "@theia/editorconfig": "^0.12.0", + "@theia/file-search": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/getting-started": "^0.12.0", + "@theia/git": "^0.12.0", + "@theia/java": "^0.12.0", + "@theia/java-debug": "^0.12.0", + "@theia/json": "^0.12.0", + "@theia/keymaps": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/markers": "^0.12.0", + "@theia/merge-conflicts": "^0.12.0", + "@theia/messages": "^0.12.0", + "@theia/metrics": "^0.12.0", + "@theia/mini-browser": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/navigator": "^0.12.0", + "@theia/outline-view": "^0.12.0", + "@theia/output": "^0.12.0", + "@theia/plugin-dev": "^0.12.0", + "@theia/plugin-ext": "^0.12.0", + "@theia/plugin-ext-vscode": "^0.12.0", + "@theia/preferences": "^0.12.0", + "@theia/preview": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/python": "^0.12.0", + "@theia/search-in-workspace": "^0.12.0", + "@theia/task": "^0.12.0", + "@theia/terminal": "^0.12.0", + "@theia/textmate-grammars": "^0.12.0", + "@theia/tslint": "^0.12.0", + "@theia/typehierarchy": "^0.12.0", + "@theia/typescript": "^0.12.0", + "@theia/userstorage": "^0.12.0", + "@theia/variable-resolver": "^0.12.0", + "@theia/workspace": "^0.12.0" }, "scripts": { "prepare": "yarn run clean && yarn build", @@ -68,6 +68,6 @@ "test:ui": "wdio wdio.conf.js" }, "devDependencies": { - "@theia/cli": "^0.11.0" + "@theia/cli": "^0.12.0" } } diff --git a/lerna.json b/lerna.json index bb5cbb9134f07..0b4a224adf136 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "lerna": "2.2.0", "npmClient": "yarn", "useWorkspaces": true, - "version": "0.11.0", + "version": "0.12.0", "command": { "run": { "stream": true diff --git a/packages/bunyan/package.json b/packages/bunyan/package.json index 1c0c04cf53668..93db7e10a9963 100644 --- a/packages/bunyan/package.json +++ b/packages/bunyan/package.json @@ -1,9 +1,9 @@ { "name": "@theia/bunyan", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - bunyan Logger Extension", "dependencies": { - "@theia/core": "^0.11.0", + "@theia/core": "^0.12.0", "@types/bunyan": "^1.8.0", "bunyan": "^1.8.10" }, @@ -39,7 +39,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/callhierarchy/package.json b/packages/callhierarchy/package.json index c4b74f3bbf2d5..dad5ca5f8c2b0 100644 --- a/packages/callhierarchy/package.json +++ b/packages/callhierarchy/package.json @@ -1,12 +1,12 @@ { "name": "@theia/callhierarchy", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Call Hierarchy Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/monaco": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/monaco": "^0.12.0", "ts-md5": "^1.2.2" }, "publishConfig": { @@ -41,7 +41,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/console/package.json b/packages/console/package.json index ce9096211e0c3..5296285baf218 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,10 +1,10 @@ { "name": "@theia/console", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Console Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/monaco": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/monaco": "^0.12.0", "anser": "^1.4.7" }, "publishConfig": { @@ -39,7 +39,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/core/package.json b/packages/core/package.json index 51f1403c96734..dfb350c154669 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@theia/core", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.", "main": "lib/common/index.js", "typings": "lib/common/index.d.ts", @@ -8,7 +8,7 @@ "@babel/runtime": "^7.5.5", "@phosphor/widgets": "^1.5.0", "@primer/octicons-react": "^9.0.0", - "@theia/application-package": "^0.11.0", + "@theia/application-package": "^0.12.0", "@types/body-parser": "^1.16.4", "@types/bunyan": "^1.8.0", "@types/express": "^4.16.0", @@ -89,7 +89,7 @@ "generate-layout": "electron ./scripts/generate-layout" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0", + "@theia/ext-scripts": "^0.12.0", "minimist": "^1.2.0" }, "nyc": { diff --git a/packages/cpp/package.json b/packages/cpp/package.json index 5afc32fe832a3..fcc1bdb91f4e6 100644 --- a/packages/cpp/package.json +++ b/packages/cpp/package.json @@ -1,18 +1,18 @@ { "name": "@theia/cpp", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Cpp Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/preferences": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/task": "^0.11.0", - "@theia/variable-resolver": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/preferences": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/task": "^0.12.0", + "@theia/variable-resolver": "^0.12.0", + "@theia/workspace": "^0.12.0", "string-argv": "^0.1.1" }, "publishConfig": { @@ -49,7 +49,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/debug-nodejs/package.json b/packages/debug-nodejs/package.json index 9426695346db8..b2228458bb707 100644 --- a/packages/debug-nodejs/package.json +++ b/packages/debug-nodejs/package.json @@ -1,9 +1,9 @@ { "name": "@theia/debug-nodejs", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - NodeJS Debug Extension", "dependencies": { - "@theia/debug": "^0.11.0", + "@theia/debug": "^0.12.0", "ps-list": "5.0.1", "vscode-debugprotocol": "^1.32.0" }, @@ -43,7 +43,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/debug/package.json b/packages/debug/package.json index 409ae92911073..5b83371d48476 100644 --- a/packages/debug/package.json +++ b/packages/debug/package.json @@ -1,25 +1,25 @@ { "name": "@theia/debug", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Debug Extension", "dependencies": { - "@theia/application-package": "^0.11.0", - "@theia/console": "^0.11.0", - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/json": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/markers": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/output": "^0.11.0", - "@theia/preferences": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/terminal": "^0.11.0", - "@theia/userstorage": "^0.11.0", - "@theia/variable-resolver": "^0.11.0", - "@theia/workspace": "^0.11.0", - "@theia/task": "^0.11.0", + "@theia/application-package": "^0.12.0", + "@theia/console": "^0.12.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/json": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/markers": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/output": "^0.12.0", + "@theia/preferences": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/task": "^0.12.0", + "@theia/terminal": "^0.12.0", + "@theia/userstorage": "^0.12.0", + "@theia/variable-resolver": "^0.12.0", + "@theia/workspace": "^0.12.0", "@types/p-debounce": "^1.0.1", "jsonc-parser": "^2.0.2", "mkdirp": "^0.5.0", @@ -67,7 +67,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/editor-preview/package.json b/packages/editor-preview/package.json index 9a183c9ba6f49..6006415bec88a 100644 --- a/packages/editor-preview/package.json +++ b/packages/editor-preview/package.json @@ -1,11 +1,11 @@ { "name": "@theia/editor-preview", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Editor Preview Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/navigator": "^0.11.0" + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/navigator": "^0.12.0" }, "publishConfig": { "access": "public" @@ -39,7 +39,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/editor/package.json b/packages/editor/package.json index b515c84b0480f..e422bf2741df2 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -1,11 +1,11 @@ { "name": "@theia/editor", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Editor Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/variable-resolver": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/variable-resolver": "^0.12.0", "@types/base64-arraybuffer": "0.1.0", "base64-arraybuffer": "^0.1.5" }, @@ -41,7 +41,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/editorconfig/package.json b/packages/editorconfig/package.json index d3aa39efa04ac..93418326e970c 100644 --- a/packages/editorconfig/package.json +++ b/packages/editorconfig/package.json @@ -1,12 +1,12 @@ { "name": "@theia/editorconfig", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Editorconfig Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/monaco": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/monaco": "^0.12.0", "editorconfig": "^0.15.0" }, "publishConfig": { @@ -42,7 +42,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/extension-manager/package.json b/packages/extension-manager/package.json index 8f15737d3d47f..259544c3a5371 100644 --- a/packages/extension-manager/package.json +++ b/packages/extension-manager/package.json @@ -1,12 +1,12 @@ { "name": "@theia/extension-manager", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Extension Manager", "dependencies": { - "@theia/application-manager": "^0.11.0", - "@theia/application-package": "^0.11.0", - "@theia/core": "^0.11.0", - "@theia/filesystem": "^0.11.0", + "@theia/application-manager": "^0.12.0", + "@theia/application-package": "^0.12.0", + "@theia/core": "^0.12.0", + "@theia/filesystem": "^0.12.0", "@types/request": "^2.0.3", "@types/sanitize-html": "^1.13.31", "@types/showdown": "^1.7.1", @@ -47,7 +47,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/file-search/package.json b/packages/file-search/package.json index cc8a87c655f27..7185fdeff97d2 100644 --- a/packages/file-search/package.json +++ b/packages/file-search/package.json @@ -1,13 +1,13 @@ { "name": "@theia/file-search", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - File Search Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/workspace": "^0.12.0", "fuzzy": "^0.1.3", "vscode-ripgrep": "^1.2.4" }, @@ -44,7 +44,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/filesystem/package.json b/packages/filesystem/package.json index 9762c33692c8f..05f530632abb7 100644 --- a/packages/filesystem/package.json +++ b/packages/filesystem/package.json @@ -1,10 +1,10 @@ { "name": "@theia/filesystem", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - FileSystem Extension", "dependencies": { - "@theia/application-package": "^0.11.0", - "@theia/core": "^0.11.0", + "@theia/application-package": "^0.12.0", + "@theia/core": "^0.12.0", "@types/body-parser": "^1.17.0", "@types/rimraf": "^2.0.2", "@types/tar-fs": "^1.16.1", @@ -66,7 +66,7 @@ "test:watch": "theiaext test:watch" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/getting-started/package.json b/packages/getting-started/package.json index 9a162d788c601..1eff298358ba9 100644 --- a/packages/getting-started/package.json +++ b/packages/getting-started/package.json @@ -1,12 +1,12 @@ { "name": "@theia/getting-started", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - GettingStarted Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/keymaps": "^0.11.0", - "@theia/workspace": "^0.11.0" + "@theia/core": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/keymaps": "^0.12.0", + "@theia/workspace": "^0.12.0" }, "publishConfig": { "access": "public" @@ -41,7 +41,7 @@ "test:watch": "theiaext test:watch" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/git/package.json b/packages/git/package.json index d5b3f3d6fed35..02006fab637a9 100644 --- a/packages/git/package.json +++ b/packages/git/package.json @@ -1,15 +1,15 @@ { "name": "@theia/git", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Git Integration", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/navigator": "^0.11.0", - "@theia/scm": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/navigator": "^0.12.0", + "@theia/scm": "^0.12.0", + "@theia/workspace": "^0.12.0", "@types/diff": "^3.2.2", "@types/p-queue": "^2.3.1", "diff": "^3.4.0", @@ -63,7 +63,7 @@ "test:watch": "theiaext test:watch" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0", + "@theia/ext-scripts": "^0.12.0", "upath": "^1.0.2" }, "nyc": { diff --git a/packages/java-debug/package.json b/packages/java-debug/package.json index 5ba81d96d437e..f0364de1fc873 100644 --- a/packages/java-debug/package.json +++ b/packages/java-debug/package.json @@ -1,10 +1,10 @@ { "name": "@theia/java-debug", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Java Debug Extension", "dependencies": { - "@theia/debug": "^0.11.0", - "@theia/java": "^0.11.0", + "@theia/debug": "^0.12.0", + "@theia/java": "^0.12.0", "lodash": "^4.17.10" }, "publishConfig": { @@ -44,7 +44,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/java/package.json b/packages/java/package.json index 932f47580d651..e7f76b3c191fc 100644 --- a/packages/java/package.json +++ b/packages/java/package.json @@ -1,12 +1,12 @@ { "name": "@theia/java", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Java Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/monaco": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/monaco": "^0.12.0", "@types/glob": "^5.0.30", "@types/tar": "4.0.0", "glob": "^7.1.2", @@ -15,7 +15,7 @@ "tar": "^4.0.0" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "scripts": { "prepare": "yarn run clean && yarn run build", diff --git a/packages/json/package.json b/packages/json/package.json index 9b38761cbcfa8..7da944e26f9d1 100644 --- a/packages/json/package.json +++ b/packages/json/package.json @@ -1,16 +1,16 @@ { "name": "@theia/json", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - JSON Extension", "dependencies": { - "@theia/application-package": "^0.11.0", - "@theia/core": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/monaco": "^0.11.0", + "@theia/application-package": "^0.12.0", + "@theia/core": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/monaco": "^0.12.0", "vscode-json-languageserver": "^1.2.1" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "scripts": { "prepare": "yarn run clean && yarn run build", diff --git a/packages/keymaps/package.json b/packages/keymaps/package.json index b5e8f99b20f7a..09d7c2bf5f796 100644 --- a/packages/keymaps/package.json +++ b/packages/keymaps/package.json @@ -1,12 +1,12 @@ { "name": "@theia/keymaps", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Custom Keymaps Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/userstorage": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/userstorage": "^0.12.0", + "@theia/workspace": "^0.12.0", "@types/lodash.debounce": "4.0.3", "ajv": "^6.5.3", "fuzzy": "^0.1.3", @@ -14,7 +14,7 @@ "lodash.debounce": "^4.0.8" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0", + "@theia/ext-scripts": "^0.12.0", "@types/temp": "^0.8.29", "temp": "^0.8.3" }, diff --git a/packages/languages/package.json b/packages/languages/package.json index 2d725c7e57c7e..ed6fc33064c1d 100644 --- a/packages/languages/package.json +++ b/packages/languages/package.json @@ -1,12 +1,12 @@ { "name": "@theia/languages", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Languages Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/output": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/output": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/workspace": "^0.12.0", "@typefox/monaco-editor-core": "^0.18.0-next", "@types/uuid": "^3.4.3", "monaco-languageclient": "^0.10.2", @@ -45,7 +45,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/markers/package.json b/packages/markers/package.json index 70fcad178ee2e..b42d0b66314da 100644 --- a/packages/markers/package.json +++ b/packages/markers/package.json @@ -1,12 +1,12 @@ { "name": "@theia/markers", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Markers Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/navigator": "^0.11.0", - "@theia/workspace": "^0.11.0" + "@theia/core": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/navigator": "^0.12.0", + "@theia/workspace": "^0.12.0" }, "publishConfig": { "access": "public" @@ -40,7 +40,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/merge-conflicts/package.json b/packages/merge-conflicts/package.json index 1db800514763f..1b1e174252688 100644 --- a/packages/merge-conflicts/package.json +++ b/packages/merge-conflicts/package.json @@ -1,11 +1,11 @@ { "name": "@theia/merge-conflicts", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Merge Conflicts Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/languages": "^0.11.0" + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/languages": "^0.12.0" }, "publishConfig": { "access": "public" @@ -39,7 +39,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/messages/package.json b/packages/messages/package.json index 5bd360cddbfbb..2a8f95b30c437 100644 --- a/packages/messages/package.json +++ b/packages/messages/package.json @@ -1,9 +1,9 @@ { "name": "@theia/messages", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Messages Extension", "dependencies": { - "@theia/core": "^0.11.0", + "@theia/core": "^0.12.0", "lodash.throttle": "^4.1.1", "markdown-it": "^8.4.0", "react-perfect-scrollbar": "^1.5.3", @@ -41,7 +41,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/metrics/package.json b/packages/metrics/package.json index 40aa50348bc9c..e6e37f38c3a0c 100644 --- a/packages/metrics/package.json +++ b/packages/metrics/package.json @@ -1,10 +1,10 @@ { "name": "@theia/metrics", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Metrics Extension", "dependencies": { - "@theia/application-package": "^0.11.0", - "@theia/core": "^0.11.0", + "@theia/application-package": "^0.12.0", + "@theia/core": "^0.12.0", "prom-client": "^10.2.0" }, "publishConfig": { @@ -39,7 +39,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/mini-browser/package.json b/packages/mini-browser/package.json index b148f18b64576..a0aa890b547a9 100644 --- a/packages/mini-browser/package.json +++ b/packages/mini-browser/package.json @@ -1,10 +1,10 @@ { "name": "@theia/mini-browser", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Mini-Browser Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/filesystem": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/filesystem": "^0.12.0", "@types/mime-types": "^2.1.0", "mime-types": "^2.1.18", "pdfobject": "^2.0.201604172" @@ -42,7 +42,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/monaco/package.json b/packages/monaco/package.json index 928763133777e..325501d33e124 100644 --- a/packages/monaco/package.json +++ b/packages/monaco/package.json @@ -1,15 +1,15 @@ { "name": "@theia/monaco", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Monaco Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/markers": "^0.11.0", - "@theia/outline-view": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/markers": "^0.12.0", + "@theia/outline-view": "^0.12.0", + "@theia/workspace": "^0.12.0", "deepmerge": "2.0.1", "jsonc-parser": "^2.0.2", "monaco-css": "^2.5.0", @@ -51,7 +51,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/navigator/package.json b/packages/navigator/package.json index 38e164f4e42f5..04405eb1d1ecc 100644 --- a/packages/navigator/package.json +++ b/packages/navigator/package.json @@ -1,11 +1,11 @@ { "name": "@theia/navigator", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Navigator Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/workspace": "^0.12.0", "fuzzy": "^0.1.3", "minimatch": "^3.0.4" }, @@ -41,7 +41,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/outline-view/package.json b/packages/outline-view/package.json index 6f3b0e924c4e4..a3413debf2cfa 100644 --- a/packages/outline-view/package.json +++ b/packages/outline-view/package.json @@ -1,9 +1,9 @@ { "name": "@theia/outline-view", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Outline View Extension", "dependencies": { - "@theia/core": "^0.11.0" + "@theia/core": "^0.12.0" }, "publishConfig": { "access": "public" @@ -37,7 +37,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/output/package.json b/packages/output/package.json index c1a53045cee80..8062a2a3d0c13 100644 --- a/packages/output/package.json +++ b/packages/output/package.json @@ -1,9 +1,9 @@ { "name": "@theia/output", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Output Extension", "dependencies": { - "@theia/core": "^0.11.0" + "@theia/core": "^0.12.0" }, "publishConfig": { "access": "public" @@ -37,7 +37,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/plugin-dev/package.json b/packages/plugin-dev/package.json index 57eb7a3d7c514..0f88fedba2020 100644 --- a/packages/plugin-dev/package.json +++ b/packages/plugin-dev/package.json @@ -1,17 +1,17 @@ { "name": "@theia/plugin-dev", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Plugin Development Extension", "main": "lib/common/index.js", "typings": "lib/common/index.d.ts", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/debug": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/output": "^0.11.0", - "@theia/plugin-ext": "^0.11.0", - "@theia/preferences": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/debug": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/output": "^0.12.0", + "@theia/plugin-ext": "^0.12.0", + "@theia/preferences": "^0.12.0", + "@theia/workspace": "^0.12.0", "@types/request": "^2.0.3", "ps-tree": "^1.2.0", "request": "^2.82.0" @@ -50,7 +50,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/plugin-ext-vscode/package.json b/packages/plugin-ext-vscode/package.json index ffd704602b951..52a31f7d4d1af 100644 --- a/packages/plugin-ext-vscode/package.json +++ b/packages/plugin-ext-vscode/package.json @@ -1,13 +1,13 @@ { "name": "@theia/plugin-ext-vscode", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Plugin Extension for VsCode", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/plugin": "^0.11.0", - "@theia/plugin-ext": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/plugin": "^0.12.0", + "@theia/plugin-ext": "^0.12.0", + "@theia/workspace": "^0.12.0", "@types/request": "^2.0.3", "request": "^2.82.0" }, @@ -44,7 +44,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/plugin-ext/package.json b/packages/plugin-ext/package.json index c5737147af85e..52b63f9b21154 100644 --- a/packages/plugin-ext/package.json +++ b/packages/plugin-ext/package.json @@ -1,29 +1,29 @@ { "name": "@theia/plugin-ext", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Plugin Extension", "main": "lib/common/index.js", "typings": "lib/common/index.d.ts", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/debug": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/file-search": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/markers": "^0.11.0", - "@theia/messages": "^0.11.0", - "@theia/mini-browser": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/navigator": "^0.11.0", - "@theia/output": "^0.11.0", - "@theia/plugin": "^0.11.0", - "@theia/preferences": "^0.11.0", - "@theia/scm": "^0.11.0", - "@theia/search-in-workspace": "^0.11.0", - "@theia/task": "^0.11.0", - "@theia/terminal": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/debug": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/file-search": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/markers": "^0.12.0", + "@theia/messages": "^0.12.0", + "@theia/mini-browser": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/navigator": "^0.12.0", + "@theia/output": "^0.12.0", + "@theia/plugin": "^0.12.0", + "@theia/preferences": "^0.12.0", + "@theia/scm": "^0.12.0", + "@theia/search-in-workspace": "^0.12.0", + "@theia/task": "^0.12.0", + "@theia/terminal": "^0.12.0", + "@theia/workspace": "^0.12.0", "decompress": "^4.2.0", "escape-html": "^1.0.3", "jsonc-parser": "^2.0.2", @@ -69,7 +69,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0", + "@theia/ext-scripts": "^0.12.0", "@types/decompress": "^4.2.2", "@types/escape-html": "^0.0.20", "@types/lodash.clonedeep": "^4.5.3", diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 16e00791e72f1..465201678b069 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@theia/plugin", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Plugin API", "types": "./src/theia.d.ts", "publishConfig": { @@ -26,7 +26,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/preferences/package.json b/packages/preferences/package.json index a673bcc887417..46ffc6229d22a 100644 --- a/packages/preferences/package.json +++ b/packages/preferences/package.json @@ -1,15 +1,15 @@ { "name": "@theia/preferences", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Preferences Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/json": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/userstorage": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/json": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/userstorage": "^0.12.0", + "@theia/workspace": "^0.12.0", "jsonc-parser": "^2.0.2" }, "publishConfig": { @@ -44,7 +44,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/preview/package.json b/packages/preview/package.json index 09a62792e59d2..1ad1ce0886dcf 100644 --- a/packages/preview/package.json +++ b/packages/preview/package.json @@ -1,12 +1,12 @@ { "name": "@theia/preview", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Preview Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/mini-browser": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/mini-browser": "^0.12.0", "@types/highlight.js": "^9.12.2", "@types/markdown-it": "^0.0.4", "@types/markdown-it-anchor": "^4.0.1", @@ -46,7 +46,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/process/package.json b/packages/process/package.json index f6fb9687240a0..0694524e5eee5 100644 --- a/packages/process/package.json +++ b/packages/process/package.json @@ -1,9 +1,9 @@ { "name": "@theia/process", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia process support.", "dependencies": { - "@theia/core": "^0.11.0", + "@theia/core": "^0.12.0", "@theia/node-pty": "0.7.8-theia004", "string-argv": "^0.1.1" }, @@ -39,7 +39,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/python/package.json b/packages/python/package.json index 9ea4684ce9803..25c00d7d86d2f 100644 --- a/packages/python/package.json +++ b/packages/python/package.json @@ -1,12 +1,12 @@ { "name": "@theia/python", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Python Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/process": "^0.11.0" + "@theia/core": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/process": "^0.12.0" }, "publishConfig": { "access": "public" @@ -42,7 +42,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/scm/package.json b/packages/scm/package.json index a41a41a8163d2..3e20f4748cded 100644 --- a/packages/scm/package.json +++ b/packages/scm/package.json @@ -1,12 +1,12 @@ { "name": "@theia/scm", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Source control Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/navigator": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/navigator": "^0.12.0", "@types/diff": "^3.2.2", "@types/p-debounce": "^1.0.1", "diff": "^3.4.0", @@ -46,7 +46,7 @@ "docs": "theiaext docs" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/search-in-workspace/package.json b/packages/search-in-workspace/package.json index 368634b57a0e7..e7807449925ad 100644 --- a/packages/search-in-workspace/package.json +++ b/packages/search-in-workspace/package.json @@ -1,14 +1,14 @@ { "name": "@theia/search-in-workspace", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Search in workspace", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/navigator": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/navigator": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/workspace": "^0.12.0", "vscode-ripgrep": "^1.2.4" }, "publishConfig": { @@ -44,6 +44,6 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" } } diff --git a/packages/task/package.json b/packages/task/package.json index d0215c1c48e9c..b5a41d7b5204d 100644 --- a/packages/task/package.json +++ b/packages/task/package.json @@ -1,18 +1,18 @@ { "name": "@theia/task", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Task extension. This extension adds support for executing raw or terminal processes in the backend.", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/markers": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/preferences": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/terminal": "^0.11.0", - "@theia/variable-resolver": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/markers": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/preferences": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/terminal": "^0.12.0", + "@theia/variable-resolver": "^0.12.0", + "@theia/workspace": "^0.12.0", "jsonc-parser": "^2.0.2", "p-debounce": "^2.1.0", "vscode-uri": "^1.0.8" @@ -50,7 +50,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/terminal/package.json b/packages/terminal/package.json index b1af0d26039c8..d9dcbe1b3196d 100644 --- a/packages/terminal/package.json +++ b/packages/terminal/package.json @@ -1,13 +1,13 @@ { "name": "@theia/terminal", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Terminal Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/process": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/process": "^0.12.0", + "@theia/workspace": "^0.12.0", "xterm": "3.13.0" }, "publishConfig": { @@ -43,7 +43,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/textmate-grammars/package.json b/packages/textmate-grammars/package.json index 8bc1cdc7b5daa..c2d6806b36245 100644 --- a/packages/textmate-grammars/package.json +++ b/packages/textmate-grammars/package.json @@ -1,9 +1,9 @@ { "name": "@theia/textmate-grammars", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Textmate Grammars", "dependencies": { - "@theia/monaco": "^0.11.0", + "@theia/monaco": "^0.12.0", "vscode-textmate": "^4.0.1" }, "publishConfig": { @@ -39,7 +39,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/tslint/package.json b/packages/tslint/package.json index a29561646dd85..953b69cb5e165 100644 --- a/packages/tslint/package.json +++ b/packages/tslint/package.json @@ -1,6 +1,6 @@ { "name": "@theia/tslint", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - TSLint Extension", "publishConfig": { "access": "public" @@ -33,7 +33,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/typehierarchy/package.json b/packages/typehierarchy/package.json index 6c321c9654c3f..551a284293272 100644 --- a/packages/typehierarchy/package.json +++ b/packages/typehierarchy/package.json @@ -1,11 +1,11 @@ { "name": "@theia/typehierarchy", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Type Hierarchy Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/languages": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/languages": "^0.12.0", "@types/uuid": "^3.4.3", "uuid": "^3.2.1" }, @@ -41,7 +41,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 9ab6292e95df4..15fc440ef89f6 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,16 +1,16 @@ { "name": "@theia/typescript", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Typescript Extension", "dependencies": { - "@theia/application-package": "^0.11.0", - "@theia/callhierarchy": "^0.11.0", - "@theia/core": "^0.11.0", - "@theia/editor": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/languages": "^0.11.0", - "@theia/monaco": "^0.11.0", - "@theia/workspace": "^0.11.0", + "@theia/application-package": "^0.12.0", + "@theia/callhierarchy": "^0.12.0", + "@theia/core": "^0.12.0", + "@theia/editor": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/languages": "^0.12.0", + "@theia/monaco": "^0.12.0", + "@theia/workspace": "^0.12.0", "command-exists": "^1.2.8", "typescript-language-server": "^0.4.0" }, @@ -48,7 +48,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/userstorage/package.json b/packages/userstorage/package.json index 0600dcc32e59b..6df55321d3466 100644 --- a/packages/userstorage/package.json +++ b/packages/userstorage/package.json @@ -1,10 +1,10 @@ { "name": "@theia/userstorage", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - User Storage Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/filesystem": "^0.11.0" + "@theia/core": "^0.12.0", + "@theia/filesystem": "^0.12.0" }, "publishConfig": { "access": "public" @@ -38,7 +38,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/variable-resolver/package.json b/packages/variable-resolver/package.json index 37a843a8dda5e..75d1f68c8c67c 100644 --- a/packages/variable-resolver/package.json +++ b/packages/variable-resolver/package.json @@ -1,9 +1,9 @@ { "name": "@theia/variable-resolver", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Variable Resolver Extension", "dependencies": { - "@theia/core": "^0.11.0" + "@theia/core": "^0.12.0" }, "publishConfig": { "access": "public" @@ -43,7 +43,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json" diff --git a/packages/workspace/package.json b/packages/workspace/package.json index 57f90f77d3d6d..9e7d3eff658c0 100644 --- a/packages/workspace/package.json +++ b/packages/workspace/package.json @@ -1,11 +1,11 @@ { "name": "@theia/workspace", - "version": "0.11.0", + "version": "0.12.0", "description": "Theia - Workspace Extension", "dependencies": { - "@theia/core": "^0.11.0", - "@theia/filesystem": "^0.11.0", - "@theia/variable-resolver": "^0.11.0", + "@theia/core": "^0.12.0", + "@theia/filesystem": "^0.12.0", + "@theia/variable-resolver": "^0.12.0", "ajv": "^6.5.3", "jsonc-parser": "^2.0.2", "moment": "^2.21.0", @@ -44,7 +44,7 @@ "test": "theiaext test" }, "devDependencies": { - "@theia/ext-scripts": "^0.11.0" + "@theia/ext-scripts": "^0.12.0" }, "nyc": { "extends": "../../configs/nyc.json"