You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monaco-editor/scripts/bundle.js

87 lines
2.3 KiB
JavaScript

7 years ago
const requirejs = require('requirejs');
const path = require('path');
const fs = require('fs');
const UglifyJS = require("uglify-js");
const helpers = require('monaco-plugin-helpers');
7 years ago
const REPO_ROOT = path.resolve(__dirname, '..');
const sha1 = helpers.getGitVersion(REPO_ROOT);
7 years ago
const semver = require('../package.json').version;
const headerVersion = semver + '(' + sha1 + ')';
const BUNDLED_FILE_HEADER = [
'/*!-----------------------------------------------------------------------------',
' * Copyright (c) Microsoft Corporation. All rights reserved.',
7 years ago
' * monaco-languages version: ' + headerVersion,
7 years ago
' * Released under the MIT license',
7 years ago
' * https://github.com/Microsoft/monaco-languages/blob/master/LICENSE.md',
7 years ago
' *-----------------------------------------------------------------------------*/',
''
].join('\n');
bundleOne('monaco.contribution');
bundleOne('bat');
bundleOne('css');
bundleOne('coffee');
bundleOne('cpp');
bundleOne('csharp');
bundleOne('dockerfile');
bundleOne('fsharp');
bundleOne('go');
bundleOne('handlebars');
bundleOne('html');
bundleOne('ini');
bundleOne('pug');
bundleOne('java');
bundleOne('less');
bundleOne('lua');
bundleOne('markdown');
bundleOne('msdax');
bundleOne('objective-c');
bundleOne('php');
bundleOne('powershell');
bundleOne('postiats');
bundleOne('python');
bundleOne('r');
bundleOne('razor');
bundleOne('ruby');
bundleOne('scss');
bundleOne('sql');
bundleOne('swift');
bundleOne('vb');
bundleOne('xml');
bundleOne('yaml');
bundleOne('solidity');
bundleOne('sb');
bundleOne('mysql');
bundleOne('redshift');
bundleOne('pgsql');
bundleOne('redis');
bundleOne('csp');
function bundleOne(moduleId, exclude) {
requirejs.optimize({
baseUrl: 'release/dev/',
name: 'vs/basic-languages/' + moduleId,
out: 'release/min/' + moduleId + '.js',
exclude: exclude,
paths: {
'vs/basic-languages': REPO_ROOT + '/release/dev'
},
optimize: 'none'
}, function(buildResponse) {
const filePath = path.join(REPO_ROOT, 'release/min/' + moduleId + '.js');
const fileContents = fs.readFileSync(filePath).toString();
console.log();
console.log(`Minifying ${filePath}...`);
const result = UglifyJS.minify(fileContents, {
output: {
comments: 'some'
}
});
console.log(`Done.`);
fs.writeFileSync(filePath, BUNDLED_FILE_HEADER + result.code);
})
}