Prepare for 0.15.6
parent
6096325b12
commit
c17896b800
|
@ -1,5 +1,8 @@
|
||||||
# Monaco Editor Changelog
|
# Monaco Editor Changelog
|
||||||
|
|
||||||
|
## [0.15.6] (23.11.2018)
|
||||||
|
* Fixes issue with context menu (https://github.com/Microsoft/monaco-editor/issues/1199)
|
||||||
|
|
||||||
## [0.15.5] (16.11.2018)
|
## [0.15.5] (16.11.2018)
|
||||||
* Re-remove cast to any from our code base to allow for tree shaking to not shake useful code (https://github.com/Microsoft/monaco-editor/issues/1013)
|
* Re-remove cast to any from our code base to allow for tree shaking to not shake useful code (https://github.com/Microsoft/monaco-editor/issues/1013)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Type definitions for monaco-editor v0.15.5
|
* Type definitions for monaco-editor v0.15.6
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
/*---------------------------------------------------------------------------------------------
|
/*---------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -2258,9 +2258,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"monaco-editor-core": {
|
"monaco-editor-core": {
|
||||||
"version": "0.15.4",
|
"version": "0.15.5",
|
||||||
"resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.15.4.tgz",
|
"resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.15.5.tgz",
|
||||||
"integrity": "sha512-Lc96HNv5YISUNKBUIcDSzwON1BollVOSnoqgUrf7ytfrh7JtdEqEPl64sBIr5C6pfmrItP/Xc0kS7USyhRCMNA==",
|
"integrity": "sha512-kM3KHRjj16cFdK5Z0EppKUu793JVMpsEesBSWlqdgrxcmjyDMXV6xK0oatPcAYp3eOfbbyjPhruxDXj85FKyIg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"monaco-html": {
|
"monaco-html": {
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
"gulp-typedoc": "^2.2.0",
|
"gulp-typedoc": "^2.2.0",
|
||||||
"http-server": "^0.11.1",
|
"http-server": "^0.11.1",
|
||||||
"monaco-css": "2.3.0",
|
"monaco-css": "2.3.0",
|
||||||
"monaco-editor-core": "0.15.4",
|
"monaco-editor-core": "0.15.5",
|
||||||
"monaco-html": "2.3.0",
|
"monaco-html": "2.3.0",
|
||||||
"monaco-json": "2.3.0",
|
"monaco-json": "2.3.0",
|
||||||
"monaco-languages": "1.6.0",
|
"monaco-languages": "1.6.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Type definitions for monaco-editor v0.15.5
|
* Type definitions for monaco-editor v0.15.6
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
/*---------------------------------------------------------------------------------------------
|
/*---------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue