vscode-cordova/package.json

731 строка
23 KiB
JSON
Исходник Обычный вид История

{
2017-02-09 15:37:39 +03:00
"name": "cordova-tools",
2018-11-08 12:09:11 +03:00
"displayName": "Cordova Tools",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.description%",
2017-11-01 12:44:39 +03:00
"keywords": [
"cordova",
"ionic",
"multi-root ready"
],
"version": "2.5.0",
2017-02-09 15:37:39 +03:00
"private": true,
2019-05-24 14:20:36 +03:00
"publisher": "msjsdiag",
2017-02-09 15:37:39 +03:00
"icon": "images/icon.png",
"galleryBanner": {
"color": "#feb943",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-cordova"
},
"bugs": "https://github.com/Microsoft/vscode-cordova/issues",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"license": "%cordova.license%",
2017-02-09 15:37:39 +03:00
"engines": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"vscode": "^1.40.0"
2017-02-09 15:37:39 +03:00
},
"categories": [
"Debuggers",
"Snippets",
2017-02-09 15:37:39 +03:00
"Other"
],
"activationEvents": [
"onDebugResolve:cordova",
"onDebugInitialConfigurations",
"onCommand:cordova.prepare",
"onCommand:cordova.build",
"onCommand:cordova.run",
"onCommand:ionic.prepare",
"onCommand:ionic.build",
"onCommand:ionic.run",
"onCommand:cordova.simulate.android",
"onCommand:cordova.simulate.ios",
"workspaceContains:config.xml",
"workspaceContains:ionic.config.json"
2017-02-09 15:37:39 +03:00
],
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"extensionKind": [
"workspace"
],
"main": "./src/cordova",
2017-02-09 15:37:39 +03:00
"contributes": {
"commands": [
{
"command": "cordova.build",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.build%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
2017-02-09 15:37:39 +03:00
},
{
"command": "cordova.run",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.run%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
2017-02-09 15:37:39 +03:00
},
{
"command": "cordova.prepare",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.prepare%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
2017-02-09 15:37:39 +03:00
},
{
"command": "cordova.simulate.android",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.simulate.android%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
2017-02-09 15:37:39 +03:00
},
{
"command": "cordova.simulate.ios",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.simulate.ios%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
2017-02-09 15:37:39 +03:00
},
{
"command": "ionic.build",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.ionic.build%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
2017-02-09 15:37:39 +03:00
},
{
"command": "ionic.run",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.ionic.run%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
2017-02-09 15:37:39 +03:00
},
{
"command": "ionic.prepare",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"title": "%cordova.ionic.prepare%",
"category": "Cordova",
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
},
{
"command": "cordova.restart",
"title": "%cordova.restart%",
"category": "Cordova",
"icon": {
"dark": "./images/sync.svg",
"light": "./images/sync-light.svg"
}
2017-02-09 15:37:39 +03:00
}
],
2017-02-09 15:37:39 +03:00
"keybindings": [
{
"command": "cordova.build",
"key": "f6",
"mac": "f6",
"when": "!inDebugMode"
2017-02-09 15:37:39 +03:00
},
{
"command": "cordova.run",
"key": "ctrl+f5",
"mac": "cmd+f5",
"when": "!inDebugMode"
2017-02-09 15:37:39 +03:00
}
],
"menus": {
"debug/toolBar": [
{
"command": "cordova.restart",
"when": "isCordovaDebugging && debugType == 'pwa-chrome' || isCordovaDebugging && debugType == 'pwa-node' || isCordovaDebugging && debugType == 'cordova'"
}
],
"commandPalette": [
{
"command": "cordova.restart",
"when": "false"
}
]
},
"breakpoints": [
{
"language": "javascript"
},
{
"language": "typescript"
},
{
"language": "javascriptreact"
},
{
"language": "typescriptreact"
}
],
2017-02-09 15:37:39 +03:00
"debuggers": [
{
"type": "cordova",
"label": "Cordova",
"runtime": "node",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"configurationSnippets": [
2017-02-09 15:37:39 +03:00
{
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"label": "Cordova: Run Android on device",
"description": "%cordova.snippets.androidRunOnDevice%",
"body": {
"name": "Run Android on device",
"type": "cordova",
"request": "launch",
"platform": "android",
"target": "device",
"port": 9222,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"label": "Cordova: Run Android on emulator",
"description": "%cordova.snippets.androidRunOnEmulator%",
"body": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"name": "Run Android on emulator",
"type": "cordova",
"request": "launch",
"platform": "android",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"target": "emulator",
"port": 9222,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
"label": "Cordova: Run on iOS device",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.snippets.iOSRunOnDevice%",
"body": {
"name": "Run iOS on device",
"type": "cordova",
"request": "launch",
"platform": "ios",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"target": "device",
"port": 9220,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
"label": "Cordova: Run on iOS simulator - experimental",
"description": "%cordova.snippets.iOSRunOnSimulator%",
"body": {
"name": "Run iOS on simulator - experimental",
"type": "cordova",
"request": "launch",
"platform": "ios",
"target": "emulator",
"port": 9220,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"label": "Cordova: Attach to running Android on device",
"description": "%cordova.snippets.androidAttachOnDevice%",
"body": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"name": "Attach to running Android on device",
"type": "cordova",
"request": "attach",
"platform": "android",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"target": "device",
"port": 9222,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
"label": "Cordova: Attach to running Android on emulator",
"description": "%cordova.snippets.androidAttachOnEmulator%",
"body": {
"name": "Attach to running Android on emulator",
"type": "cordova",
"request": "attach",
"platform": "android",
"target": "emulator",
"port": 9222,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"label": "Cordova: Attach to running iOS on device",
"description": "%cordova.snippets.iOSAttachOnDevice%",
"body": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"name": "Attach to running iOS on device",
"type": "cordova",
"request": "attach",
"platform": "ios",
"target": "device",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"port": 9220,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
"label": "Cordova: Attach to running iOS on simulator - experimental",
"description": "%cordova.snippets.iOSAttachOnSimulator%",
"body": {
"name": "Attach to running iOS on simulator - experimental",
"type": "cordova",
"request": "attach",
"platform": "ios",
"target": "emulator",
"port": 9220,
"sourceMaps": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
"label": "Cordova: Serve",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.snippets.ionicServe%",
"body": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"name": "Serve to the browser (Ionic Serve)",
"type": "cordova",
"request": "launch",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"target": "chrome",
"platform": "serve",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"devServerAddress": "${1:localhost}",
"sourceMaps": true,
"ionicLiveReload": true,
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"label": "Cordova: Simulate Android in browser",
"description": "%cordova.snippets.simulateAndroid%",
"body": {
"name": "Simulate Android in browser",
"type": "cordova",
"request": "launch",
"platform": "android",
"target": "chrome",
"simulatePort": 8000,
"livereload": true,
"cwd": "^\"\\${workspaceFolder}\"",
"sourceMaps": true
}
},
{
"label": "Cordova: Simulate iOS in browser",
"description": "%cordova.snippets.simulateiOS%",
"body": {
"name": "Simulate iOS in browser",
"type": "cordova",
"request": "launch",
"platform": "ios",
"target": "chrome",
"simulatePort": 8000,
"livereload": true,
"cwd": "^\"\\${workspaceFolder}\"",
"sourceMaps": true
}
},
{
"label": "Cordova: Run Browser",
"description": "%cordova.snippets.simulateBrowser%",
"body": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"name": "Run Browser",
"type": "cordova",
"request": "launch",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"platform": "browser",
"target": "chrome",
"simulatePort": 8000,
"livereload": true,
"cwd": "^\"\\${workspaceFolder}\"",
"sourceMaps": true
}
}
],
2017-02-09 15:37:39 +03:00
"configurationAttributes": {
"launch": {
"required": [
"platform",
"cwd"
],
"properties": {
"platform": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.platform%"
2017-02-09 15:37:39 +03:00
},
"cwd": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.cwd%"
2017-02-09 15:37:39 +03:00
},
"target": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.target%",
"anyOf": [
{
"type": "string",
"enum": [
"device",
"emulator"
]
},
{
"type": "string"
}
],
2017-02-09 15:37:39 +03:00
"default": "emulator"
},
"sourceMaps": {
"type": "boolean",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.sourceMaps%",
2017-02-09 15:37:39 +03:00
"default": false
},
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"trace": {
"type": "boolean",
"default": true,
"description": "%cordova.properties.launch.trace%"
},
2017-02-09 15:37:39 +03:00
"port": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.port%",
2017-02-09 15:37:39 +03:00
"default": 9222
},
"webkitRangeMin": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.webkitRangeMin%",
2017-02-09 15:37:39 +03:00
"default": 9223
},
"webkitRangeMax": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "",
2017-02-09 15:37:39 +03:00
"default": 9322
},
"attachAttempts": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.attachAttempts%",
2017-02-09 15:37:39 +03:00
"default": 5
},
"attachDelay": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.attachDelay%",
2017-02-09 15:37:39 +03:00
"default": 1000
},
"attachTimeout": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.attachTimeout%",
"default": 10000
},
2017-02-09 15:37:39 +03:00
"iosDebugProxyPort": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.iosDebugProxyPort%",
2017-02-09 15:37:39 +03:00
"default": 9221
},
"ionicLiveReload": {
"type": "boolean",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.ionicLiveReload%",
2017-02-09 15:37:39 +03:00
"default": false
},
"devServerPort": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.devServerPort%"
2017-02-09 15:37:39 +03:00
},
"devServerAddress": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.devServerAddress%"
2017-02-09 15:37:39 +03:00
},
"devServerTimeout": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.devServerTimeout%",
"default": 60000
2017-02-09 15:37:39 +03:00
},
"simulatePort": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.simulatePort%",
2017-02-09 15:37:39 +03:00
"default": 8000
},
"livereload": {
"type": "boolean",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.livereload%"
},
"livereloadDelay": {
"type": "number",
"description": "%cordova.properties.launch.livereloadDelay%",
"default": 200
2017-02-09 15:37:39 +03:00
},
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"forcePrepare": {
2017-02-09 15:37:39 +03:00
"type": "boolean",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.forcePrepare%"
2017-02-09 15:37:39 +03:00
},
"simulateTempDir": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.simulateTempDir%",
"default": "${workspaceFolder}/.vscode/simulation"
2017-02-09 15:37:39 +03:00
},
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"corsProxy": {
2017-02-09 15:37:39 +03:00
"type": "boolean",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.corsProxy%",
2017-02-09 15:37:39 +03:00
"default": true
},
"runArguments": {
"type": "array",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.runArguments%"
},
"cordovaExecutable": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.cordovaExecutable%"
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.env%",
"default": {}
},
"envFile": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.envFile%",
"default": "${workspaceFolder}/.env"
},
"skipFiles": {
"type": "array",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.skipFiles%",
"default": []
},
"pathMapping": {
"type": "object",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.pathMapping%",
"default": {
"/": "${workspaceFolder}"
}
},
"runtimeVersion": {
"type": "string",
"description": "%cordova.properties.launch.runtimeVersion%"
},
"sourceMapPathOverrides": {
"type": "object",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.launch.sourceMapPathOverrides%",
"default": {
"webpack:///./*": "${cwd}/*",
"webpack:///src/*": "${cwd}/*",
"webpack:///*": "*",
"webpack:///./~/*": "${cwd}/node_modules/*",
"./*": "${cwd}/*"
}
},
"spaUrlRewrites": {
"type": "boolean",
"description": "%cordova.properties.launch.spaUrlRewrites%",
"default": false
2017-02-09 15:37:39 +03:00
}
2016-03-15 20:36:31 +03:00
}
2017-02-09 15:37:39 +03:00
},
"attach": {
"required": [
"platform",
"cwd"
],
"properties": {
"platform": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.platform%"
2017-02-09 15:37:39 +03:00
},
"cwd": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.cwd%"
2017-02-09 15:37:39 +03:00
},
"target": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.target%",
2017-02-09 15:37:39 +03:00
"default": "emulator"
},
"sourceMaps": {
"type": "boolean",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.sourceMaps%",
2017-02-09 15:37:39 +03:00
"default": false
},
"port": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.port%",
2017-02-09 15:37:39 +03:00
"default": 9222
},
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"trace": {
"type": "boolean",
"default": true,
"description": "%cordova.properties.attach.trace%"
},
2017-02-09 15:37:39 +03:00
"webkitRangeMin": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.webkitRangeMin%",
2017-02-09 15:37:39 +03:00
"default": 9223
},
"webkitRangeMax": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.webkitRangeMax%",
2017-02-09 15:37:39 +03:00
"default": 9322
},
"attachAttempts": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.attachAttempts%",
2017-02-09 15:37:39 +03:00
"default": 5
},
"attachDelay": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.attachDelay%",
2017-02-09 15:37:39 +03:00
"default": 1000
},
"attachTimeout": {
"type": "number",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.attachTimeout%",
"default": 10000
},
"skipFiles": {
"type": "array",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.skipFiles%",
"default": []
},
"pathMapping": {
"type": "object",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.pathMapping%",
"default": {
"/": "${workspaceFolder}"
}
},
"ionicLiveReload": {
"type": "boolean",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.ionicLiveReload%",
"default": false
},
"sourceMapPathOverrides": {
"type": "object",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.properties.attach.sourceMapPathOverrides%",
"default": {
"webpack:///./*": "${cwd}/*",
"webpack:///src/*": "${cwd}/*",
"webpack:///*": "*",
"webpack:///./~/*": "${cwd}/node_modules/*",
"./*": "${cwd}/*"
}
2017-02-09 15:37:39 +03:00
}
}
2017-02-09 15:37:39 +03:00
}
}
}
],
"configuration": [
{
2018-11-08 12:09:11 +03:00
"title": "Cordova Tools",
"properties": {
"cordova.runArguments": {
"type": "array",
"default": [],
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.configuration.properties.cordova.runArguments%",
2017-11-01 12:44:39 +03:00
"scope": "resource"
},
"cordova.cordovaExecutable": {
"type": "string",
"default": "",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.configuration.properties.cordova.cordovaExecutable%",
"scope": "resource"
},
"cordova.env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.configuration.properties.cordova.env%",
"default": {},
"scope": "resource"
},
"cordova.envFile": {
"type": "string",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"description": "%cordova.configuration.properties.cordova.envFile%",
"scope": "resource"
}
}
}
2017-02-09 15:37:39 +03:00
]
},
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": "limited",
"description": "%cordova.workspaceTrust.description%"
}
},
2017-02-09 15:37:39 +03:00
"scripts": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"build": "gulp build",
"test": "node ./test/runTest.js",
"vscode:prepublish": "gulp"
2017-02-09 15:37:39 +03:00
},
"prettier": {
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 100,
"tabWidth": 4,
"endOfLine": "auto",
"overrides": [
{
"files": [
"*.md"
],
"options": {
"tabWidth": 2,
"printWidth": 80
}
}
]
},
2017-02-09 15:37:39 +03:00
"dependencies": {
"@mixer/parallel-prettier": "^2.0.2",
2017-02-09 15:37:39 +03:00
"elementtree": "^0.1.6",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"execa": "^4.0.0",
"gulp-mocha": "^8.0.0",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"ip": "^1.1.5",
"plist": "^3.0.5",
"semver": "^6.3.0",
"socket.io-client": "2.4.0",
"uuid": "^8.3.1",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"vscode-cdp-proxy": "^0.2.0",
"vscode-debugadapter": "^1.39.1",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"vscode-debugprotocol": "^1.40.0",
2017-02-09 15:37:39 +03:00
"vscode-extension-telemetry": "0.0.5",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"vscode-js-debug-browsers": "^1.0.0",
"vscode-nls": "^4.1.2",
"winreg": "0.0.13",
"xcode": "^3.0.1"
2017-02-09 15:37:39 +03:00
},
"devDependencies": {
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"@types/elementtree": "^0.1.0",
"@types/fancy-log": "^1.3.1",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"@types/mocha": "^8.0.3",
"@types/node": "^10.17.17",
"@types/rimraf": "^2.0.3",
"@types/semver": "^5.5.0",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"@types/sinon": "^9.0.7",
"@types/socket.io-client": "^1.4.36",
"@types/uuid": "^8.3.0",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"@types/vscode": "1.40.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.33.0",
2022-05-23 18:28:44 +03:00
"cordova-simulate": "^1.1.3",
2019-01-17 16:57:34 +03:00
"del": "^2.2.2",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"devtools-protocol": "0.0.760817",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.7.1",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-unicorn": "^28.0.2",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"event-stream": "3.3.4",
"fancy-log": "^1.3.3",
"glob": "^7.2.0",
"gulp": "^4.0.2",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"gulp-filter": "^6.0.0",
"gulp-preprocess": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"minimist": "^1.2.6",
"mocha": "^9.2.0",
"prettier": "2.6.2",
"rimraf": "^2.7.1",
"should": "^13.2.1",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"sinon": "^9.1.0",
2021-04-12 12:55:03 +03:00
"ts-loader": "^8.1.0",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"typescript": "^3.8.3",
"vsce": "^2.7.0",
"vscode-nls-dev": "^4.0.0",
js-debug migration (#673) * Prepare for migration to js-debug (#614) * Restore simulate scenarios functionality (#618) * Fix multiroot projects processing (#625) * Improve extension stability (#627) * Implement CDP proxy logger (#635) * Enhance js-debug debugging configuration (#636) * Add CDP message handler to proxy (#640) * Implement Safari CDP message handler (#641) * Improve async functions control (#647) * Implement Cordova Debug Config Provider (#648) * Implement cordova webviews recognition (#649) * Migrate unit tests from vscode to vscode-test package (#650) * Migrate unit tests from vscode to vscode-test package (#645) * Add tools for vscode-nls package support (#651) * Add extension bundling with Webpack (#653) * Add i18n for common and debugger folders (#654) * Add i18n to extension and utils folders (#655) * Externalized package.json strings for further localization (#656) * Add cordova simulate localization according to VS Code language (#657) * Fix minor i18n export issue (#658) * Fix localization import errors (#660) * Commit first version of localized json files (#661) * Ignore i18n file while packaging the extension (#662) * Change parent session stop command (#663) * Fix simulator viewport handling (#664) * Fix breakpoints activation for Cordova on Windows (#665) * ESLint migration (#666) * Add integration tests for Cordova CDP Proxy (#668) * Add unit tests (#669) * Fix iOS 14 debugging (#671) * Add 'livereloadDelay' parameter to attach args (#672) Co-authored-by: Yuri Skorokhodov <v-yuskor@microsoft.com> Co-authored-by: Daniel Ye <danyeh@microsoft.com> Co-authored-by: Mikhail Suendukov <43934531+JiglioNero@users.noreply.github.com>
2020-10-09 17:36:39 +03:00
"vscode-test": "^1.4.0",
2021-04-12 12:55:03 +03:00
"webpack": "^5.31.2",
"webpack-bundle-analyzer": "^4.4.0"
2017-02-09 15:37:39 +03:00
}
}