mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 21:06:57 +00:00
218 lines
9.9 KiB
JavaScript
218 lines
9.9 KiB
JavaScript
"use strict";
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.packageMarketplaceExtensionsStream = exports.packageLocalExtensionsStream = exports.fromMarketplace = void 0;
|
|
const es = require("event-stream");
|
|
const fs = require("fs");
|
|
const glob = require("glob");
|
|
const gulp = require("gulp");
|
|
const path = require("path");
|
|
const File = require("vinyl");
|
|
const vsce = require("vsce");
|
|
const stats_1 = require("./stats");
|
|
const util2 = require("./util");
|
|
const remote = require("gulp-remote-retry-src");
|
|
const vzip = require('gulp-vinyl-zip');
|
|
const filter = require("gulp-filter");
|
|
const rename = require("gulp-rename");
|
|
const fancyLog = require("fancy-log");
|
|
const ansiColors = require("ansi-colors");
|
|
const buffer = require('gulp-buffer');
|
|
const json = require("gulp-json-editor");
|
|
const webpack = require('webpack');
|
|
const webpackGulp = require('webpack-stream');
|
|
const util = require('./util');
|
|
const root = path.dirname(path.dirname(__dirname));
|
|
const commit = util.getVersion(root);
|
|
const sourceMappingURLBase = `https://ticino.blob.core.windows.net/sourcemaps/${commit}`;
|
|
function fromLocal(extensionPath) {
|
|
const webpackFilename = path.join(extensionPath, 'extension.webpack.config.js');
|
|
const input = fs.existsSync(webpackFilename)
|
|
? fromLocalWebpack(extensionPath)
|
|
: fromLocalNormal(extensionPath);
|
|
const tmLanguageJsonFilter = filter('**/*.tmLanguage.json', { restore: true });
|
|
return input
|
|
.pipe(tmLanguageJsonFilter)
|
|
.pipe(buffer())
|
|
.pipe(es.mapSync((f) => {
|
|
f.contents = Buffer.from(JSON.stringify(JSON.parse(f.contents.toString('utf8'))));
|
|
return f;
|
|
}))
|
|
.pipe(tmLanguageJsonFilter.restore);
|
|
}
|
|
function fromLocalWebpack(extensionPath) {
|
|
const result = es.through();
|
|
const packagedDependencies = [];
|
|
const packageJsonConfig = require(path.join(extensionPath, 'package.json'));
|
|
if (packageJsonConfig.dependencies) {
|
|
const webpackRootConfig = require(path.join(extensionPath, 'extension.webpack.config.js'));
|
|
for (const key in webpackRootConfig.externals) {
|
|
if (key in packageJsonConfig.dependencies) {
|
|
packagedDependencies.push(key);
|
|
}
|
|
}
|
|
}
|
|
vsce.listFiles({ cwd: extensionPath, packageManager: vsce.PackageManager.Yarn, packagedDependencies }).then(fileNames => {
|
|
const files = fileNames
|
|
.map(fileName => path.join(extensionPath, fileName))
|
|
.map(filePath => new File({
|
|
path: filePath,
|
|
stat: fs.statSync(filePath),
|
|
base: extensionPath,
|
|
contents: fs.createReadStream(filePath)
|
|
}));
|
|
const filesStream = es.readArray(files);
|
|
// check for a webpack configuration files, then invoke webpack
|
|
// and merge its output with the files stream. also rewrite the package.json
|
|
// file to a new entry point
|
|
const webpackConfigLocations = glob.sync(path.join(extensionPath, '/**/extension.webpack.config.js'), { ignore: ['**/node_modules'] });
|
|
const packageJsonFilter = filter(f => {
|
|
if (path.basename(f.path) === 'package.json') {
|
|
// only modify package.json's next to the webpack file.
|
|
// to be safe, use existsSync instead of path comparison.
|
|
return fs.existsSync(path.join(path.dirname(f.path), 'extension.webpack.config.js'));
|
|
}
|
|
return false;
|
|
}, { restore: true });
|
|
const patchFilesStream = filesStream
|
|
.pipe(packageJsonFilter)
|
|
.pipe(buffer())
|
|
.pipe(json((data) => {
|
|
if (data.main) {
|
|
// hardcoded entry point directory!
|
|
data.main = data.main.replace('/out/', /dist/);
|
|
}
|
|
return data;
|
|
}))
|
|
.pipe(packageJsonFilter.restore);
|
|
const webpackStreams = webpackConfigLocations.map(webpackConfigPath => {
|
|
const webpackDone = (err, stats) => {
|
|
fancyLog(`Bundled extension: ${ansiColors.yellow(path.join(path.basename(extensionPath), path.relative(extensionPath, webpackConfigPath)))}...`);
|
|
if (err) {
|
|
result.emit('error', err);
|
|
}
|
|
const { compilation } = stats;
|
|
if (compilation.errors.length > 0) {
|
|
result.emit('error', compilation.errors.join('\n'));
|
|
}
|
|
if (compilation.warnings.length > 0) {
|
|
result.emit('error', compilation.warnings.join('\n'));
|
|
}
|
|
};
|
|
const webpackConfig = Object.assign(Object.assign({}, require(webpackConfigPath)), { mode: 'production' });
|
|
const relativeOutputPath = path.relative(extensionPath, webpackConfig.output.path);
|
|
return webpackGulp(webpackConfig, webpack, webpackDone)
|
|
.pipe(es.through(function (data) {
|
|
data.stat = data.stat || {};
|
|
data.base = extensionPath;
|
|
this.emit('data', data);
|
|
}))
|
|
.pipe(es.through(function (data) {
|
|
// source map handling:
|
|
// * rewrite sourceMappingURL
|
|
// * save to disk so that upload-task picks this up
|
|
const contents = data.contents.toString('utf8');
|
|
data.contents = Buffer.from(contents.replace(/\n\/\/# sourceMappingURL=(.*)$/gm, function (_m, g1) {
|
|
return `\n//# sourceMappingURL=${sourceMappingURLBase}/extensions/${path.basename(extensionPath)}/${relativeOutputPath}/${g1}`;
|
|
}), 'utf8');
|
|
this.emit('data', data);
|
|
}));
|
|
});
|
|
es.merge(...webpackStreams, patchFilesStream)
|
|
// .pipe(es.through(function (data) {
|
|
// // debug
|
|
// console.log('out', data.path, data.contents.length);
|
|
// this.emit('data', data);
|
|
// }))
|
|
.pipe(result);
|
|
}).catch(err => {
|
|
console.error(extensionPath);
|
|
console.error(packagedDependencies);
|
|
result.emit('error', err);
|
|
});
|
|
return result.pipe(stats_1.createStatsStream(path.basename(extensionPath)));
|
|
}
|
|
function fromLocalNormal(extensionPath) {
|
|
const result = es.through();
|
|
vsce.listFiles({ cwd: extensionPath, packageManager: vsce.PackageManager.Yarn })
|
|
.then(fileNames => {
|
|
const files = fileNames
|
|
.map(fileName => path.join(extensionPath, fileName))
|
|
.map(filePath => new File({
|
|
path: filePath,
|
|
stat: fs.statSync(filePath),
|
|
base: extensionPath,
|
|
contents: fs.createReadStream(filePath)
|
|
}));
|
|
es.readArray(files).pipe(result);
|
|
})
|
|
.catch(err => result.emit('error', err));
|
|
return result.pipe(stats_1.createStatsStream(path.basename(extensionPath)));
|
|
}
|
|
const baseHeaders = {
|
|
'X-Market-Client-Id': 'VSCode Build',
|
|
'User-Agent': 'VSCode Build',
|
|
'X-Market-User-Id': '291C1CD0-051A-4123-9B4B-30D60EF52EE2',
|
|
};
|
|
function fromMarketplace(extensionName, version, metadata) {
|
|
const [publisher, name] = extensionName.split('.');
|
|
const url = `https://marketplace.visualstudio.com/_apis/public/gallery/publishers/${publisher}/vsextensions/${name}/${version}/vspackage`;
|
|
fancyLog('Downloading extension:', ansiColors.yellow(`${extensionName}@${version}`), '...');
|
|
const options = {
|
|
base: url,
|
|
requestOptions: {
|
|
gzip: true,
|
|
headers: baseHeaders
|
|
}
|
|
};
|
|
const packageJsonFilter = filter('package.json', { restore: true });
|
|
return remote('', options)
|
|
.pipe(vzip.src())
|
|
.pipe(filter('extension/**'))
|
|
.pipe(rename(p => p.dirname = p.dirname.replace(/^extension\/?/, '')))
|
|
.pipe(packageJsonFilter)
|
|
.pipe(buffer())
|
|
.pipe(json({ __metadata: metadata }))
|
|
.pipe(packageJsonFilter.restore);
|
|
}
|
|
exports.fromMarketplace = fromMarketplace;
|
|
const excludedExtensions = [
|
|
'vscode-api-tests',
|
|
'vscode-web-playground',
|
|
'vscode-colorize-tests',
|
|
'vscode-test-resolver',
|
|
'ms-vscode.node-debug',
|
|
'ms-vscode.node-debug2',
|
|
'vscode-notebook-tests'
|
|
];
|
|
const builtInExtensions = JSON.parse(fs.readFileSync(path.join(__dirname, '../../product.json'), 'utf8')).builtInExtensions;
|
|
function packageLocalExtensionsStream() {
|
|
const localExtensionDescriptions = glob.sync('extensions/*/package.json')
|
|
.map(manifestPath => {
|
|
const extensionPath = path.dirname(path.join(root, manifestPath));
|
|
const extensionName = path.basename(extensionPath);
|
|
return { name: extensionName, path: extensionPath };
|
|
})
|
|
.filter(({ name }) => excludedExtensions.indexOf(name) === -1)
|
|
.filter(({ name }) => builtInExtensions.every(b => b.name !== name));
|
|
const nodeModules = gulp.src('extensions/node_modules/**', { base: '.' });
|
|
const localExtensions = localExtensionDescriptions.map(extension => {
|
|
return fromLocal(extension.path)
|
|
.pipe(rename(p => p.dirname = `extensions/${extension.name}/${p.dirname}`));
|
|
});
|
|
return es.merge(nodeModules, ...localExtensions)
|
|
.pipe(util2.setExecutableBit(['**/*.sh']));
|
|
}
|
|
exports.packageLocalExtensionsStream = packageLocalExtensionsStream;
|
|
function packageMarketplaceExtensionsStream() {
|
|
const extensions = builtInExtensions.map(extension => {
|
|
return fromMarketplace(extension.name, extension.version, extension.metadata)
|
|
.pipe(rename(p => p.dirname = `extensions/${extension.name}/${p.dirname}`));
|
|
});
|
|
return es.merge(extensions)
|
|
.pipe(util2.setExecutableBit(['**/*.sh']));
|
|
}
|
|
exports.packageMarketplaceExtensionsStream = packageMarketplaceExtensionsStream;
|