Adopt latest monaco-editor-core

This commit is contained in:
Alexandru Dima 2021-01-29 00:13:12 +01:00
parent 7a07b3daf7
commit ecd888cdc5
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0
3 changed files with 7 additions and 5 deletions

6
package-lock.json generated
View file

@ -1178,9 +1178,9 @@
"dev": true "dev": true
}, },
"monaco-editor-core": { "monaco-editor-core": {
"version": "0.21.0", "version": "0.22.0",
"resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.21.0.tgz", "resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.22.0.tgz",
"integrity": "sha512-buBxOxwexlb7pdQrIHjj7OGmtVmEe735NN7M8GbhN03eYAKQmaeIAs1AyneOOHvbvh1Ntm7PoHH8f196gd2p6w==", "integrity": "sha512-KzghzcLxuLspZkOQdSqhAxES7pB/0VgjcBk126+e+ydiXAnrUTiMhiUV1lWA3cSPg0xL08HN64y5eYy+6Au8iw==",
"dev": true "dev": true
}, },
"monaco-plugin-helpers": { "monaco-plugin-helpers": {

View file

@ -24,7 +24,7 @@
"glob": "^7.1.6", "glob": "^7.1.6",
"husky": "^4.3.0", "husky": "^4.3.0",
"jsdom": "^16.4.0", "jsdom": "^16.4.0",
"monaco-editor-core": "0.21.0", "monaco-editor-core": "0.22.0",
"monaco-plugin-helpers": "^1.0.3", "monaco-plugin-helpers": "^1.0.3",
"prettier": "^2.1.2", "prettier": "^2.1.2",
"pretty-quick": "^3.0.2", "pretty-quick": "^3.0.2",

View file

@ -20,4 +20,6 @@ define('vs/nls', [], {
} }
}); });
define(['vs/editor/editor.main', function () {}]); define(['vs/editor/editor.main'], function (api) {
global.monaco = api;
});