Родитель
e83c563ee8
Коммит
61758fc92b
|
@ -1,3 +1,10 @@
|
|||
## 2.5.0
|
||||
* Added support for iOS simulators [#758](https://github.com/microsoft/vscode-cordova/pull/758)
|
||||
* Improved sourcemap URLs processing for Cordova projects with typescript [#762](https://github.com/microsoft/vscode-cordova/issues/762)
|
||||
* Fixed bug `"Chrome did not shut down correctly"` after closing browser window via stopping debugging in VSCode [#767](https://github.com/microsoft/vscode-cordova/pull/767)
|
||||
* Fixed auto unchecking default breakpoints filters for exceptions [#768](https://github.com/microsoft/vscode-cordova/pull/768)
|
||||
* Fixed security vulnerabilities [#763](https://github.com/microsoft/vscode-cordova/pull/763), [#764](https://github.com/microsoft/vscode-cordova/pull/764)
|
||||
|
||||
## 2.4.1
|
||||
* Added Ionic 6 version support [#748](https://github.com/microsoft/vscode-cordova/pull/748)
|
||||
* Implemented the `spaUrlRewrite` option for Simulate debug scenarios to improve page refreshing in case of URL rewrites caused by the router in single page applications [#750](https://github.com/microsoft/vscode-cordova/issues/750)
|
||||
|
|
|
@ -45,7 +45,7 @@ You can use other fields in these configurations as well. Here's the complete li
|
|||
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `port` | The port number that the debugger uses to connect to a device or emulator.<br>**Type:** `number` | 9222 |
|
||||
| `platform` | The target platform to run for (either `ios`, `android`, `browser` or `serve`; other platforms are not currently supported).<br>**Type:** `string` | n/a |
|
||||
| `target` | Target to run on. Possible values: `emulator`, `device`, `<Android emulator/device id>`, `<Android emulator name>`. For simulation in the browser, you can use `chrome`, `edge`. If the value is `emulator` and platform is `android` then the quick pick window will be expanded with the names of the available Android virtual devices, then the target value in `launch.json` will be changed to the name of the selected virtual device. If you have only one virtual device available, it will be selected automatically.<br>_Note: If you're using Android emulator targets, please, make sure the `emulator` utility is added to `PATH`._<br>**Type:** `string` | emulator |
|
||||
| `target` | Target to run on. Possible values: `emulator`, `device`, `<name or id of your target emulator or device>`,. For simulation in the browser, you can use `chrome`, `edge`. If the value is `emulator` the quick pick window will be expanded with the names of the available Android virtual devices (for iOS virtual targets the list of available system versions of the target will be shown first, and after that another quick pick window will be expanded with the list of iOS simulators names with the selected version of the system), then the target value in `launch.json` will be changed to the AVD name/iOS Simulator udid of the selected virtual device. If you have only one virtual device available, it will be selected automatically.<br>_Note: If you're using Android emulator targets, please, make sure the `emulator` utility is added to `PATH`._<br>**Type:** `string` | emulator |
|
||||
| `trace` | Trace may be set to `true` to print diagnostic logs of the extension to the console and write diagnostic logs of the Javascript debugger to the disk.<br>**Type:** `boolean` | true |
|
||||
| `sourceMaps` | Set this field to `true` if you want the debugger to use javascript sourcemaps (if they exist).<br>**Type:** `boolean` | false |
|
||||
| `sourceMapPathOverrides` | A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk. <br>**Type:** `object` | {<br>`"webpack:///./*": "${cwd}/*",`<br>`"webpack:///src/*": "${cwd}/*",`<br>`"webpack:///*": "*",`<br>`"webpack:///./~/*": "${cwd}/node_modules/*"`,<br>`"./*": "${cwd}/*"`<br>} |
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "cordova-tools",
|
||||
"version": "2.4.1",
|
||||
"version": "2.5.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"ionic",
|
||||
"multi-root ready"
|
||||
],
|
||||
"version": "2.4.1",
|
||||
"version": "2.5.0",
|
||||
"private": true,
|
||||
"publisher": "msjsdiag",
|
||||
"icon": "images/icon.png",
|
||||
|
|
|
@ -236,7 +236,7 @@ Copyright (c) 1999-2007 by Fredrik Lundh
|
|||
human-signals 1.1.1 - Apache-2.0
|
||||
https://git.io/JeluP
|
||||
|
||||
Copyright 2019
|
||||
Copyright 2019 ehmicky <ehmicky@gmail.com>
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
|
@ -448,6 +448,7 @@ Copyright 2019
|
|||
xcode 3.0.1 - Apache-2.0
|
||||
https://github.com/apache/cordova-node-xcode#readme
|
||||
|
||||
Copyright 2012-2020 The Apache Software Foundation
|
||||
|
||||
|
||||
Apache License
|
||||
|
@ -782,9 +783,10 @@ License, as follows:
|
|||
|
||||
---------------------------------------------------------
|
||||
|
||||
semver 5.1.0 - ISC
|
||||
semver 6.3.0 - ISC
|
||||
https://github.com/npm/node-semver#readme
|
||||
|
||||
Copyright Isaac Z.
|
||||
Copyright Isaac Z. Schlueter
|
||||
Copyright (c) Isaac Z. Schlueter and Contributors
|
||||
|
||||
|
@ -812,7 +814,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
signal-exit 3.0.3 - ISC
|
||||
https://github.com/tapjs/signal-exit
|
||||
|
||||
Copyright (c) 2015
|
||||
Copyright (c) 2015, Contributors
|
||||
|
||||
The ISC License
|
||||
|
||||
|
@ -1506,7 +1508,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|||
ip 1.1.5 - MIT
|
||||
https://github.com/indutny/node-ip
|
||||
|
||||
Copyright Fedor Indutny, 2012.
|
||||
Copyright Fedor Indutny, 2012
|
||||
|
||||
MIT License
|
||||
|
||||
|
@ -1615,7 +1617,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|||
|
||||
---------------------------------------------------------
|
||||
|
||||
minimist 1.2.5 - MIT
|
||||
minimist 1.2.6 - MIT
|
||||
https://github.com/substack/minimist
|
||||
|
||||
|
||||
|
@ -1831,7 +1833,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|||
|
||||
---------------------------------------------------------
|
||||
|
||||
plist 3.0.4 - MIT
|
||||
plist 3.0.5 - MIT
|
||||
https://github.com/TooTallNate/node-plist#readme
|
||||
|
||||
Copyright (c) 2010-2017 Nathan Rajlich <nathan@tootallnate.net>
|
||||
|
@ -2435,7 +2437,7 @@ SOFTWARE.
|
|||
|
||||
---------------------------------------------------------
|
||||
|
||||
big-integer 1.6.48 - Unlicense
|
||||
big-integer 1.6.51 - Unlicense
|
||||
https://github.com/peterolson/BigInteger.js#readme
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче