123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985 |
- const gulp = require('gulp');
- /**
- * @typedef { { src:string; 'npm/dev':string; 'npm/min':string; built:string; releaseDev:string; releaseMin:string; } } ICorePaths
- * @typedef { { src:string; dev:string; min:string; esm: string; } } IPluginPaths
- * @typedef { { name:string; contrib:string; modulePrefix:string; rootPath:string; paths:IPluginPaths } } IPlugin
- * @typedef { { METADATA: {CORE:{paths:ICorePaths}; PLUGINS:IPlugin[];} } } IMetadata
- * @type { IMetadata }
- */
- const metadata = require('./monaco-editor/metadata');
- const es = require('event-stream');
- const path = require('path');
- const fs = require('fs');
- const rimraf = require('rimraf');
- const cp = require('child_process');
- const yaserver = require('yaserver');
- const http = require('http');
- const CleanCSS = require('clean-css');
- const uncss = require('uncss');
- const File = require('vinyl');
- const ts = require('typescript');
- const WEBSITE_GENERATED_PATH = path.join(__dirname, 'monaco-editor/website/playground/new-samples');
- /** @type {string} */
- const MONACO_EDITOR_VERSION = (function () {
- const packageJsonPath = path.join(__dirname, 'package.json');
- const packageJson = JSON.parse(fs.readFileSync(packageJsonPath).toString());
- const version = packageJson.version;
- if (!/\d+\.\d+\.\d+/.test(version)) {
- console.log('unrecognized package.json version: ' + version);
- process.exit(0);
- }
- return version;
- })();
- async function _execute(task) {
- // Always invoke as if it were a callback task
- return new Promise((resolve, reject) => {
- if (task.length === 1) {
- // this is a calback task
- task((err) => {
- if (err) {
- return reject(err);
- }
- resolve();
- });
- return;
- }
- const taskResult = task();
- if (typeof taskResult === 'undefined') {
- // this is a sync task
- resolve();
- return;
- }
- if (typeof taskResult.then === 'function') {
- // this is a promise returning task
- taskResult.then(resolve, reject);
- return;
- }
- // this is a stream returning task
- taskResult.on('end', (_) => resolve());
- taskResult.on('error', (err) => reject(err));
- });
- }
- function taskSeries(...tasks) {
- return async () => {
- for (let i = 0; i < tasks.length; i++) {
- await _execute(tasks[i]);
- }
- };
- }
- const cleanReleaseTask = function (cb) {
- rimraf('release', { maxBusyTries: 1 }, cb);
- };
- gulp.task(
- 'release',
- taskSeries(cleanReleaseTask, function () {
- return es.merge(
- // dev folder
- releaseOne('dev'),
- // min folder
- releaseOne('min'),
- // esm folder
- ESM_release(),
- // package.json
- gulp
- .src('package.json')
- .pipe(
- es.through(function (data) {
- var json = JSON.parse(data.contents.toString());
- json.private = false;
- data.contents = Buffer.from(JSON.stringify(json, null, ' '));
- delete json.scripts['postinstall'];
- this.emit('data', data);
- })
- )
- .pipe(gulp.dest('release')),
- gulp.src('CHANGELOG.md').pipe(gulp.dest('release')),
- // min-maps folder
- gulp.src('node_modules/monaco-editor-core/min-maps/**/*').pipe(gulp.dest('release/min-maps')),
- // other files
- gulp
- .src([
- 'node_modules/monaco-editor-core/LICENSE',
- 'node_modules/monaco-editor-core/monaco.d.ts',
- 'node_modules/monaco-editor-core/ThirdPartyNotices.txt',
- 'README.md'
- ])
- .pipe(addPluginDTS())
- .pipe(addPluginThirdPartyNotices())
- .pipe(gulp.dest('release'))
- );
- })
- );
- /**
- * Release to `dev` or `min`.
- * @param {'dev'|'min'} type
- * @returns {NodeJS.ReadWriteStream}
- */
- function releaseOne(type) {
- return es.merge(
- gulp
- .src('node_modules/monaco-editor-core/' + type + '/**/*')
- .pipe(addPluginContribs(type))
- .pipe(gulp.dest('release/' + type)),
- pluginStreams(type, 'release/' + type + '/')
- );
- }
- /**
- * Release plugins to `dev` or `min`.
- * @param {'dev'|'min'} type
- * @param {string} destinationPath
- * @returns {NodeJS.ReadWriteStream}
- */
- function pluginStreams(type, destinationPath) {
- return es.merge(
- metadata.METADATA.PLUGINS.map(function (plugin) {
- return pluginStream(plugin, type, destinationPath);
- })
- );
- }
- /**
- * Release a plugin to `dev` or `min`.
- * @param {IPlugin} plugin
- * @param {'dev'|'min'} type
- * @param {string} destinationPath
- * @returns {NodeJS.ReadWriteStream}
- */
- function pluginStream(plugin, type, destinationPath) {
- const pluginPath = path.join(plugin.rootPath, plugin.paths[type]); // dev or min
- const contribPath =
- path.join(pluginPath, plugin.contrib.substr(plugin.modulePrefix.length)) + '.js';
- return gulp
- .src([pluginPath + '/**/*', '!' + contribPath])
- .pipe(
- es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/_\.contribution/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- let contents = data.contents.toString();
- contents = contents.replace(
- 'define(["require", "exports"],',
- 'define(["require", "exports", "vs/editor/editor.api"],'
- );
- data.contents = Buffer.from(contents);
- this.emit('data', data);
- }
- )
- )
- .pipe(gulp.dest(destinationPath + plugin.modulePrefix));
- }
- /**
- * Edit editor.main.js:
- * - rename the AMD module 'vs/editor/editor.main' to 'vs/editor/edcore.main'
- * - append monaco.contribution modules from plugins
- * - append new AMD module 'vs/editor/editor.main' that stiches things together
- *
- * @param {'dev'|'min'} type
- * @returns {NodeJS.ReadWriteStream}
- */
- function addPluginContribs(type) {
- return es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/editor\.main\.js$/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- let contents = data.contents.toString();
- // Rename the AMD module 'vs/editor/editor.main' to 'vs/editor/edcore.main'
- contents = contents.replace(/"vs\/editor\/editor\.main\"/, '"vs/editor/edcore.main"');
- /** @type {string[]} */
- let extraContent = [];
- /** @type {string[]} */
- let allPluginsModuleIds = [];
- metadata.METADATA.PLUGINS.forEach(function (plugin) {
- allPluginsModuleIds.push(plugin.contrib);
- const pluginPath = path.join(plugin.rootPath, plugin.paths[type]); // dev or min
- const contribPath =
- path.join(__dirname, pluginPath, plugin.contrib.substr(plugin.modulePrefix.length)) +
- '.js';
- let contribContents = fs.readFileSync(contribPath).toString();
- contribContents = contribContents.replace(
- /define\((['"][a-z\/\-]+\/fillers\/monaco-editor-core['"]),\[\],/,
- "define($1,['vs/editor/editor.api'],"
- );
- extraContent.push(contribContents);
- });
- extraContent.push(
- `define("vs/editor/editor.main", ["vs/editor/edcore.main","${allPluginsModuleIds.join(
- '","'
- )}"], function(api) { return api; });`
- );
- let insertIndex = contents.lastIndexOf('//# sourceMappingURL=');
- if (insertIndex === -1) {
- insertIndex = contents.length;
- }
- contents =
- contents.substring(0, insertIndex) +
- '\n' +
- extraContent.join('\n') +
- '\n' +
- contents.substring(insertIndex);
- data.contents = Buffer.from(contents);
- this.emit('data', data);
- }
- );
- }
- /**
- * @returns {NodeJS.ReadWriteStream}
- */
- function ESM_release() {
- return es.merge(
- gulp
- .src([
- 'node_modules/monaco-editor-core/esm/**/*',
- // we will create our own editor.api.d.ts which also contains the plugins API
- '!node_modules/monaco-editor-core/esm/vs/editor/editor.api.d.ts'
- ])
- .pipe(ESM_addImportSuffix())
- .pipe(ESM_addPluginContribs('release/esm'))
- .pipe(gulp.dest('release/esm')),
- ESM_pluginStreams('release/esm/')
- );
- }
- /**
- * Release plugins to `esm`.
- * @param {string} destinationPath
- * @returns {NodeJS.ReadWriteStream}
- */
- function ESM_pluginStreams(destinationPath) {
- return es.merge(
- metadata.METADATA.PLUGINS.map(function (plugin) {
- return ESM_pluginStream(plugin, destinationPath);
- })
- );
- }
- /**
- * Release a plugin to `esm`.
- * Adds a dependency to 'vs/editor/editor.api' in contrib files in order for `monaco` to be defined.
- * Rewrites imports for 'monaco-editor-core/**'
- * @param {IPlugin} plugin
- * @param {string} destinationPath
- * @returns {NodeJS.ReadWriteStream}
- */
- function ESM_pluginStream(plugin, destinationPath) {
- const DESTINATION = path.join(__dirname, destinationPath);
- const pluginPath = path.join(plugin.rootPath, plugin.paths['esm']);
- return gulp
- .src([pluginPath + '/**/*'])
- .pipe(
- es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/(\.js$)|(\.ts$)/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- let contents = data.contents.toString();
- const info = ts.preProcessFile(contents);
- for (let i = info.importedFiles.length - 1; i >= 0; i--) {
- let importText = info.importedFiles[i].fileName;
- const pos = info.importedFiles[i].pos;
- const end = info.importedFiles[i].end;
- if (!/(^\.\/)|(^\.\.\/)/.test(importText)) {
- // non-relative import
- if (!/^monaco-editor-core/.test(importText)) {
- console.error(
- `Non-relative import for unknown module: ${importText} in ${data.path}`
- );
- process.exit(0);
- }
- if (importText === 'monaco-editor-core') {
- importText = 'monaco-editor-core/esm/vs/editor/editor.api';
- }
- const myFileDestPath = path.join(DESTINATION, plugin.modulePrefix, data.relative);
- const importFilePath = path.join(
- DESTINATION,
- importText.substr('monaco-editor-core/esm/'.length)
- );
- let relativePath = path
- .relative(path.dirname(myFileDestPath), importFilePath)
- .replace(/\\/g, '/');
- if (!/(^\.\/)|(^\.\.\/)/.test(relativePath)) {
- relativePath = './' + relativePath;
- }
- contents =
- contents.substring(0, pos + 1) + relativePath + contents.substring(end + 1);
- }
- }
- data.contents = Buffer.from(contents);
- this.emit('data', data);
- }
- )
- )
- .pipe(
- es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/monaco\.contribution\.js$/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- const myFileDestPath = path.join(DESTINATION, plugin.modulePrefix, data.relative);
- const apiFilePath = path.join(DESTINATION, 'vs/editor/editor.api');
- let relativePath = path
- .relative(path.dirname(myFileDestPath), apiFilePath)
- .replace(/\\/g, '/');
- if (!/(^\.\/)|(^\.\.\/)/.test(relativePath)) {
- relativePath = './' + relativePath;
- }
- let contents = data.contents.toString();
- contents = `import '${relativePath}';\n` + contents;
- data.contents = Buffer.from(contents);
- this.emit('data', data);
- }
- )
- )
- .pipe(ESM_addImportSuffix())
- .pipe(gulp.dest(destinationPath + plugin.modulePrefix));
- }
- /**
- * Adds `.js` to all import statements.
- * @returns {NodeJS.ReadWriteStream}
- */
- function ESM_addImportSuffix() {
- return es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/\.js$/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- let contents = data.contents.toString();
- const info = ts.preProcessFile(contents);
- for (let i = info.importedFiles.length - 1; i >= 0; i--) {
- const importText = info.importedFiles[i].fileName;
- const pos = info.importedFiles[i].pos;
- const end = info.importedFiles[i].end;
- if (/\.css$/.test(importText)) {
- continue;
- }
- contents =
- contents.substring(0, pos + 1) + importText + '.js' + contents.substring(end + 1);
- }
- data.contents = Buffer.from(contents);
- this.emit('data', data);
- }
- );
- }
- /**
- * - Rename esm/vs/editor/editor.main.js to esm/vs/editor/edcore.main.js
- * - Create esm/vs/editor/editor.main.js that that stiches things together
- * @param {string} dest
- * @returns {NodeJS.ReadWriteStream}
- */
- function ESM_addPluginContribs(dest) {
- const DESTINATION = path.join(__dirname, dest);
- return es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/editor\.main\.js$/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- this.emit(
- 'data',
- new File({
- path: data.path.replace(/editor\.main/, 'edcore.main'),
- base: data.base,
- contents: data.contents
- })
- );
- const mainFileDestPath = path.join(DESTINATION, 'vs/editor/editor.main.js');
- /** @type {string[]} */
- let mainFileImports = [];
- metadata.METADATA.PLUGINS.forEach(function (plugin) {
- const contribDestPath = path.join(DESTINATION, plugin.contrib);
- let relativePath = path
- .relative(path.dirname(mainFileDestPath), contribDestPath)
- .replace(/\\/g, '/');
- if (!/(^\.\/)|(^\.\.\/)/.test(relativePath)) {
- relativePath = './' + relativePath;
- }
- mainFileImports.push(relativePath);
- });
- const mainFileContents =
- mainFileImports.map((name) => `import '${name}';`).join('\n') +
- `\n\nexport * from './edcore.main';`;
- this.emit(
- 'data',
- new File({
- path: data.path,
- base: data.base,
- contents: Buffer.from(mainFileContents)
- })
- );
- }
- );
- }
- /**
- * Edit monaco.d.ts:
- * - append monaco.d.ts from plugins
- * @returns {NodeJS.ReadWriteStream}
- */
- function addPluginDTS() {
- return es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/monaco\.d\.ts$/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- let contents = data.contents.toString();
- /** @type {string[]} */
- const extraContent = [];
- metadata.METADATA.PLUGINS.forEach(function (plugin) {
- const dtsPath = path.join(plugin.rootPath, './monaco.d.ts');
- try {
- let plugindts = fs.readFileSync(dtsPath).toString();
- plugindts = plugindts.replace(/\/\/\/ <reference.*\n/m, '');
- extraContent.push(plugindts);
- } catch (err) {
- return;
- }
- });
- contents =
- [
- '/*!-----------------------------------------------------------',
- ' * Copyright (c) Microsoft Corporation. All rights reserved.',
- ' * Type definitions for monaco-editor',
- ' * Released under the MIT license',
- '*-----------------------------------------------------------*/'
- ].join('\n') +
- '\n' +
- contents +
- '\n' +
- extraContent.join('\n');
- // Ensure consistent indentation and line endings
- contents = cleanFile(contents);
- data.contents = Buffer.from(contents);
- this.emit(
- 'data',
- new File({
- path: path.join(path.dirname(data.path), 'esm/vs/editor/editor.api.d.ts'),
- base: data.base,
- contents: Buffer.from(toExternalDTS(contents))
- })
- );
- fs.writeFileSync('monaco-editor/website/playground/monaco.d.ts.txt', contents);
- fs.writeFileSync('monaco-editor/typedoc/monaco.d.ts', contents);
- this.emit('data', data);
- }
- );
- }
- /**
- * Transforms a .d.ts which uses internal modules (namespaces) to one which is usable with external modules
- * This function is duplicated in the `vscode` repo.
- * @param {string} contents
- * @returns string
- */
- function toExternalDTS(contents) {
- let lines = contents.split(/\r\n|\r|\n/);
- let killNextCloseCurlyBrace = false;
- for (let i = 0; i < lines.length; i++) {
- let line = lines[i];
- if (killNextCloseCurlyBrace) {
- if ('}' === line) {
- lines[i] = '';
- killNextCloseCurlyBrace = false;
- continue;
- }
- if (line.indexOf(' ') === 0) {
- lines[i] = line.substr(4);
- } else if (line.charAt(0) === '\t') {
- lines[i] = line.substr(1);
- }
- continue;
- }
- if ('declare namespace monaco {' === line) {
- lines[i] = '';
- killNextCloseCurlyBrace = true;
- continue;
- }
- if (line.indexOf('declare namespace monaco.') === 0) {
- lines[i] = line.replace('declare namespace monaco.', 'export namespace ');
- }
- if (line.indexOf('declare let MonacoEnvironment') === 0) {
- lines[i] = `declare global {\n let MonacoEnvironment: Environment | undefined;\n}`;
- }
- if (line.indexOf(' MonacoEnvironment?') === 0) {
- lines[i] = ` MonacoEnvironment?: Environment | undefined;`;
- }
- }
- return lines.join('\n').replace(/\n\n\n+/g, '\n\n');
- }
- /**
- * Normalize line endings and ensure consistent 4 spaces indentation
- * @param {string} contents
- * @returns {string}
- */
- function cleanFile(contents) {
- return contents
- .split(/\r\n|\r|\n/)
- .map(function (line) {
- const m = line.match(/^(\t+)/);
- if (!m) {
- return line;
- }
- const tabsCount = m[1].length;
- let newIndent = '';
- for (let i = 0; i < 4 * tabsCount; i++) {
- newIndent += ' ';
- }
- return newIndent + line.substring(tabsCount);
- })
- .join('\n');
- }
- /**
- * Edit ThirdPartyNotices.txt:
- * - append ThirdPartyNotices.txt from plugins
- * @returns {NodeJS.ReadWriteStream}
- */
- function addPluginThirdPartyNotices() {
- return es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!/ThirdPartyNotices\.txt$/.test(data.path)) {
- this.emit('data', data);
- return;
- }
- let contents = data.contents.toString();
- console.log('ADDING ThirdPartyNotices from ./ThirdPartyNotices.txt');
- let thirdPartyNoticeContent = fs
- .readFileSync(path.join(__dirname, 'ThirdPartyNotices.txt'))
- .toString();
- thirdPartyNoticeContent = thirdPartyNoticeContent.split('\n').slice(8).join('\n');
- contents += '\n' + thirdPartyNoticeContent;
- data.contents = Buffer.from(contents);
- this.emit('data', data);
- }
- );
- }
- // --- website
- const cleanWebsiteTask = function (cb) {
- rimraf('../monaco-editor-website', { maxBusyTries: 1 }, cb);
- };
- const buildWebsiteTask = taskSeries(cleanWebsiteTask, function () {
- /**
- * @param {string} dataPath
- * @param {string} contents
- * @param {RegExp} regex
- * @param {(match:string, fileContents:Buffer)=>string} callback
- * @returns {string}
- */
- function replaceWithRelativeResource(dataPath, contents, regex, callback) {
- return contents.replace(regex, function (_, m0) {
- var filePath = path.join(path.dirname(dataPath), m0);
- return callback(m0, fs.readFileSync(filePath));
- });
- }
- var waiting = 0;
- var done = false;
- return es
- .merge(
- gulp
- .src(['monaco-editor/website/**/*'], { dot: true })
- .pipe(
- es.through(
- /**
- * @param {File} data
- */
- function (data) {
- if (!data.contents || !/\.(html)$/.test(data.path) || /new-samples/.test(data.path)) {
- return this.emit('data', data);
- }
- let contents = data.contents.toString();
- contents = contents.replace(/\.\.\/release\/dev/g, 'node_modules/monaco-editor/min');
- contents = contents.replace(/{{version}}/g, MONACO_EDITOR_VERSION);
- contents = contents.replace(/{{year}}/g, new Date().getFullYear());
- // Preload xhr contents
- contents = replaceWithRelativeResource(
- data.path,
- contents,
- /<pre data-preload="([^"]+)".*/g,
- function (m0, fileContents) {
- return (
- '<pre data-preload="' +
- m0 +
- '" style="display:none">' +
- fileContents
- .toString('utf8')
- .replace(/&/g, '&')
- .replace(/</g, '<')
- .replace(/>/g, '>') +
- '</pre>'
- );
- }
- );
- // Inline fork.png
- contents = replaceWithRelativeResource(
- data.path,
- contents,
- /src="(\.\/fork.png)"/g,
- function (m0, fileContents) {
- return 'src="data:image/png;base64,' + fileContents.toString('base64') + '"';
- }
- );
- let allCSS = '';
- let tmpcontents = replaceWithRelativeResource(
- data.path,
- contents,
- /<link data-inline="yes-please" href="([^"]+)".*/g,
- function (m0, fileContents) {
- allCSS += fileContents.toString('utf8');
- return '';
- }
- );
- tmpcontents = tmpcontents.replace(/<script.*/g, '');
- tmpcontents = tmpcontents.replace(/<link.*/g, '');
- waiting++;
- uncss(
- tmpcontents,
- {
- raw: allCSS,
- ignore: [/\.alert\b/, /\.alert-error\b/, /\.playground-page\b/]
- },
- function (err, output) {
- waiting--;
- if (!err) {
- output = new CleanCSS().minify(output).styles;
- let isFirst = true;
- contents = contents.replace(
- /<link data-inline="yes-please" href="([^"]+)".*/g,
- function (_, m0) {
- if (isFirst) {
- isFirst = false;
- return '<style>' + output + '</style>';
- }
- return '';
- }
- );
- }
- // Inline javascript
- contents = replaceWithRelativeResource(
- data.path,
- contents,
- /<script data-inline="yes-please" src="([^"]+)".*/g,
- function (m0, fileContents) {
- return '<script>' + fileContents.toString('utf8') + '</script>';
- }
- );
- data.contents = Buffer.from(contents.split(/\r\n|\r|\n/).join('\n'));
- this.emit('data', data);
- if (done && waiting === 0) {
- this.emit('end');
- }
- }.bind(this)
- );
- },
- function () {
- done = true;
- if (waiting === 0) {
- this.emit('end');
- }
- }
- )
- )
- .pipe(gulp.dest('../monaco-editor-website'))
- )
- .pipe(
- es.through(
- /**
- * @param {File} data
- */
- function (data) {
- this.emit('data', data);
- },
- function () {
- // temporarily create package.json so that npm install doesn't bark
- fs.writeFileSync('../monaco-editor-website/package.json', '{}');
- fs.writeFileSync('../monaco-editor-website/.nojekyll', '');
- cp.execSync('npm install monaco-editor', {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- fs.unlinkSync('../monaco-editor-website/package.json');
- this.emit('end');
- }
- )
- );
- });
- gulp.task('build-website', buildWebsiteTask);
- gulp.task('prepare-website-branch', async function () {
- cp.execSync('git init', {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- let remoteUrl = cp.execSync('git remote get-url origin');
- let committerUserName = cp.execSync("git log --format='%an' -1");
- let committerEmail = cp.execSync("git log --format='%ae' -1");
- cp.execSync(`git config user.name ${committerUserName}`, {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- cp.execSync(`git config user.email ${committerEmail}`, {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- cp.execSync(`git remote add origin ${remoteUrl}`, {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- cp.execSync('git checkout -b gh-pages', {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- cp.execSync('git add .', {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- cp.execSync('git commit -m "Publish website"', {
- cwd: path.join(__dirname, '../monaco-editor-website')
- });
- console.log('RUN monaco-editor-website>git push origin gh-pages --force');
- });
- const generateTestSamplesTask = function () {
- var sampleNames = fs.readdirSync(path.join(__dirname, 'monaco-editor/test/samples'));
- var samples = sampleNames.map(function (sampleName) {
- var samplePath = path.join(__dirname, 'monaco-editor/test/samples', sampleName);
- var sampleContent = fs.readFileSync(samplePath).toString();
- return {
- name: sampleName,
- content: sampleContent
- };
- });
- var prefix =
- '//This is a generated file via gulp generate-test-samples\ndefine([], function() { return';
- var suffix = '; });';
- fs.writeFileSync(
- path.join(__dirname, 'monaco-editor/test/samples-all.generated.js'),
- prefix + JSON.stringify(samples, null, '\t') + suffix
- );
- var PLAY_SAMPLES = require(path.join(WEBSITE_GENERATED_PATH, 'all.js')).PLAY_SAMPLES;
- var locations = [];
- for (var i = 0; i < PLAY_SAMPLES.length; i++) {
- var sample = PLAY_SAMPLES[i];
- var sampleId = sample.id;
- var samplePath = path.join(WEBSITE_GENERATED_PATH, sample.path);
- var html = fs.readFileSync(path.join(samplePath, 'sample.html'));
- var js = fs.readFileSync(path.join(samplePath, 'sample.js'));
- var css = fs.readFileSync(path.join(samplePath, 'sample.css'));
- var result = [
- '<!DOCTYPE html>',
- '<!-- THIS IS A GENERATED FILE VIA gulp generate-test-samples -->',
- '<html>',
- '<head>',
- ' <base href="..">',
- ' <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />',
- '</head>',
- '<body>',
- '<style>',
- '/*----------------------------------------SAMPLE CSS START*/',
- '',
- css,
- '',
- '/*----------------------------------------SAMPLE CSS END*/',
- '</style>',
- '<a class="loading-opts" href="playground.generated/index.html">[<< BACK]</a> <br/>',
- 'THIS IS A GENERATED FILE VIA gulp generate-test-samples',
- '',
- '<div id="bar" style="margin-bottom: 6px;"></div>',
- '',
- '<div style="clear:both"></div>',
- '<div id="outer-container" style="width:800px;height:450px;border: 1px solid grey">',
- '<!-- ----------------------------------------SAMPLE HTML START-->',
- '',
- html,
- '',
- '<!-- ----------------------------------------SAMPLE HTML END-->',
- '</div>',
- '<div style="clear:both"></div>',
- '',
- '<script src="../metadata.js"></script>',
- '<script src="dev-setup.js"></script>',
- '<script>',
- 'loadEditor(function() {',
- '/*----------------------------------------SAMPLE JS START*/',
- '',
- js,
- '',
- '/*----------------------------------------SAMPLE JS END*/',
- '});',
- '</script>',
- '</body>',
- '</html>'
- ];
- fs.writeFileSync(
- path.join(__dirname, 'monaco-editor/test/playground.generated/' + sampleId + '.html'),
- result.join('\n')
- );
- locations.push({
- path: sampleId + '.html',
- name: sample.chapter + ' > ' + sample.name
- });
- }
- var index = [
- '<!DOCTYPE html>',
- '<!-- THIS IS A GENERATED FILE VIA gulp generate-test-samples -->',
- '<html>',
- '<head>',
- ' <base href="..">',
- '</head>',
- '<body>',
- '<a class="loading-opts" href="index.html">[<< BACK]</a><br/>',
- 'THIS IS A GENERATED FILE VIA gulp generate-test-samples<br/><br/>',
- locations
- .map(function (location) {
- return (
- '<a class="loading-opts" href="playground.generated/' +
- location.path +
- '">' +
- location.name +
- '</a>'
- );
- })
- .join('<br/>\n'),
- '<script src="../metadata.js"></script>',
- '<script src="dev-setup.js"></script>',
- '</body>',
- '</html>'
- ];
- fs.writeFileSync(
- path.join(__dirname, 'monaco-editor/test/playground.generated/index.html'),
- index.join('\n')
- );
- };
- function createSimpleServer(rootDir, port) {
- yaserver
- .createServer({
- rootDir: rootDir
- })
- .then((staticServer) => {
- const server = http.createServer((request, response) => {
- return staticServer.handle(request, response);
- });
- server.listen(port, '127.0.0.1', () => {
- console.log(`Running at http://127.0.0.1:${port}`);
- });
- });
- }
- gulp.task('generate-test-samples', taskSeries(generateTestSamplesTask));
- gulp.task(
- 'simpleserver',
- taskSeries(generateTestSamplesTask, function () {
- const SERVER_ROOT = path.normalize(path.join(__dirname, '../'));
- createSimpleServer(SERVER_ROOT, 8080);
- createSimpleServer(SERVER_ROOT, 8088);
- })
- );
|