Add Shell language

This commit is contained in:
Zhiqiang Lu 2018-06-14 10:40:13 +08:00
parent b6f47a51d6
commit 16f9c159f2
6 changed files with 517 additions and 1 deletions

View file

@ -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();