mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 20:52:56 +01:00
Add Shell language
This commit is contained in:
parent
b6f47a51d6
commit
16f9c159f2
6 changed files with 517 additions and 1 deletions
|
|
@ -63,6 +63,7 @@ bundleOne('redis/redis');
|
|||
bundleOne('csp/csp');
|
||||
bundleOne('scheme/scheme');
|
||||
bundleOne('clojure/clojure');
|
||||
bundleOne('shell/shell');
|
||||
|
||||
function bundleOne(moduleId, exclude) {
|
||||
requirejs.optimize({
|
||||
|
|
@ -74,7 +75,7 @@ function bundleOne(moduleId, exclude) {
|
|||
'vs/basic-languages': REPO_ROOT + '/release/dev'
|
||||
},
|
||||
optimize: 'none'
|
||||
}, function(buildResponse) {
|
||||
}, function (buildResponse) {
|
||||
const filePath = path.join(REPO_ROOT, 'release/min/' + moduleId + '.js');
|
||||
const fileContents = fs.readFileSync(filePath).toString();
|
||||
console.log();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue