diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-08-17 21:09:50 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-08-17 21:09:50 +0000 |
commit | eda321fc0b96e44e296341f6288dd7f1a27ba93a (patch) | |
tree | 1dba04e1ccc485d078da441ab767e650489af112 /config/plugins | |
parent | f1503ea64b21497db21094355ac574248dc243c4 (diff) | |
download | gitlab-ce-eda321fc0b96e44e296341f6288dd7f1a27ba93a.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'config/plugins')
-rw-r--r-- | config/plugins/monaco_webpack.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/config/plugins/monaco_webpack.js b/config/plugins/monaco_webpack.js deleted file mode 100644 index 01d88ca37db..00000000000 --- a/config/plugins/monaco_webpack.js +++ /dev/null @@ -1,17 +0,0 @@ -const { languagesArr } = require('monaco-editor-webpack-plugin/out/languages'); - -// monaco-yaml library doesn't play so well with monaco-editor-webpack-plugin -// so the only way to include its workers is by patching the list of languages -// in monaco-editor-webpack-plugin and adding support for yaml workers. This is -// a known issue in the library and this workaround was suggested here: -// https://github.com/pengx17/monaco-yaml/issues/20 - -const yamlLang = languagesArr.find((t) => t.label === 'yaml'); - -yamlLang.entry = [yamlLang.entry, '../../monaco-yaml/lib/esm/monaco.contribution']; -yamlLang.worker = { - id: 'vs/language/yaml/yamlWorker', - entry: '../../monaco-yaml/lib/esm/yaml.worker.js', -}; - -module.exports = require('monaco-editor-webpack-plugin'); |