mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-15 07:28:05 +00:00
Update build scripts to target es2020
This commit is contained in:
@@ -42,7 +42,7 @@ async function main() {
|
|||||||
const aadCredentials = new identity_1.ClientSecretCredential(process.env['AZURE_TENANT_ID'], process.env['AZURE_CLIENT_ID'], process.env['AZURE_CLIENT_SECRET']);
|
const aadCredentials = new identity_1.ClientSecretCredential(process.env['AZURE_TENANT_ID'], process.env['AZURE_CLIENT_ID'], process.env['AZURE_CLIENT_SECRET']);
|
||||||
const client = new cosmos_1.CosmosClient({ endpoint: process.env['AZURE_DOCUMENTDB_ENDPOINT'], aadCredentials });
|
const client = new cosmos_1.CosmosClient({ endpoint: process.env['AZURE_DOCUMENTDB_ENDPOINT'], aadCredentials });
|
||||||
const scripts = client.database('builds').container(quality).scripts;
|
const scripts = client.database('builds').container(quality).scripts;
|
||||||
await (0, retry_1.retry)(() => scripts.storedProcedure('createBuild').execute('', [Object.assign(Object.assign({}, build), { _partitionKey: '' })]));
|
await (0, retry_1.retry)(() => scripts.storedProcedure('createBuild').execute('', [{ ...build, _partitionKey: '' }]));
|
||||||
}
|
}
|
||||||
main().then(() => {
|
main().then(() => {
|
||||||
console.log('Build successfully created');
|
console.log('Build successfully created');
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ async function mixinClient(quality) {
|
|||||||
else {
|
else {
|
||||||
fancyLog(ansiColors.blue('[mixin]'), 'Inheriting OSS built-in extensions', builtInExtensions.map(e => e.name));
|
fancyLog(ansiColors.blue('[mixin]'), 'Inheriting OSS built-in extensions', builtInExtensions.map(e => e.name));
|
||||||
}
|
}
|
||||||
return Object.assign(Object.assign({ webBuiltInExtensions: originalProduct.webBuiltInExtensions }, o), { builtInExtensions });
|
return { webBuiltInExtensions: originalProduct.webBuiltInExtensions, ...o, builtInExtensions };
|
||||||
}))
|
}))
|
||||||
.pipe(productJsonFilter.restore)
|
.pipe(productJsonFilter.restore)
|
||||||
.pipe(es.mapSync((f) => {
|
.pipe(es.mapSync((f) => {
|
||||||
@@ -64,7 +64,7 @@ function mixinServer(quality) {
|
|||||||
fancyLog(ansiColors.blue('[mixin]'), `Mixing in server:`);
|
fancyLog(ansiColors.blue('[mixin]'), `Mixing in server:`);
|
||||||
const originalProduct = JSON.parse(fs.readFileSync(path.join(__dirname, '..', '..', 'product.json'), 'utf8'));
|
const originalProduct = JSON.parse(fs.readFileSync(path.join(__dirname, '..', '..', 'product.json'), 'utf8'));
|
||||||
const serverProductJson = JSON.parse(fs.readFileSync(serverProductJsonPath, 'utf8'));
|
const serverProductJson = JSON.parse(fs.readFileSync(serverProductJsonPath, 'utf8'));
|
||||||
fs.writeFileSync('product.json', JSON.stringify(Object.assign(Object.assign({}, originalProduct), serverProductJson), undefined, '\t'));
|
fs.writeFileSync('product.json', JSON.stringify({ ...originalProduct, ...serverProductJson }, undefined, '\t'));
|
||||||
fancyLog(ansiColors.blue('[mixin]'), 'product.json', ansiColors.green('✔︎'));
|
fancyLog(ansiColors.blue('[mixin]'), 'product.json', ansiColors.green('✔︎'));
|
||||||
}
|
}
|
||||||
function main() {
|
function main() {
|
||||||
|
|||||||
@@ -41,14 +41,26 @@ async function main() {
|
|||||||
identity: '99FM488X57',
|
identity: '99FM488X57',
|
||||||
'gatekeeper-assess': false
|
'gatekeeper-assess': false
|
||||||
};
|
};
|
||||||
const appOpts = Object.assign(Object.assign({}, defaultOpts), {
|
const appOpts = {
|
||||||
|
...defaultOpts,
|
||||||
// TODO(deepak1556): Incorrectly declared type in electron-osx-sign
|
// TODO(deepak1556): Incorrectly declared type in electron-osx-sign
|
||||||
ignore: (filePath) => {
|
ignore: (filePath) => {
|
||||||
return filePath.includes(gpuHelperAppName) ||
|
return filePath.includes(gpuHelperAppName) ||
|
||||||
filePath.includes(rendererHelperAppName);
|
filePath.includes(rendererHelperAppName);
|
||||||
} });
|
}
|
||||||
const gpuHelperOpts = Object.assign(Object.assign({}, defaultOpts), { app: path.join(appFrameworkPath, gpuHelperAppName), entitlements: path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-gpu-entitlements.plist'), 'entitlements-inherit': path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-gpu-entitlements.plist') });
|
};
|
||||||
const rendererHelperOpts = Object.assign(Object.assign({}, defaultOpts), { app: path.join(appFrameworkPath, rendererHelperAppName), entitlements: path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-renderer-entitlements.plist'), 'entitlements-inherit': path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-renderer-entitlements.plist') });
|
const gpuHelperOpts = {
|
||||||
|
...defaultOpts,
|
||||||
|
app: path.join(appFrameworkPath, gpuHelperAppName),
|
||||||
|
entitlements: path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-gpu-entitlements.plist'),
|
||||||
|
'entitlements-inherit': path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-gpu-entitlements.plist'),
|
||||||
|
};
|
||||||
|
const rendererHelperOpts = {
|
||||||
|
...defaultOpts,
|
||||||
|
app: path.join(appFrameworkPath, rendererHelperAppName),
|
||||||
|
entitlements: path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-renderer-entitlements.plist'),
|
||||||
|
'entitlements-inherit': path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-renderer-entitlements.plist'),
|
||||||
|
};
|
||||||
let infoPlistString = await fs.readFile(infoPlistPath, 'utf8');
|
let infoPlistString = await fs.readFile(infoPlistPath, 'utf8');
|
||||||
let infoPlistJson = plist.parse(infoPlistString);
|
let infoPlistJson = plist.parse(infoPlistString);
|
||||||
Object.assign(infoPlistJson, {
|
Object.assign(infoPlistJson, {
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ const token = process.env['VSCODE_MIXIN_PASSWORD'] || process.env['GITHUB_TOKEN'
|
|||||||
const contentBasePath = 'raw.githubusercontent.com';
|
const contentBasePath = 'raw.githubusercontent.com';
|
||||||
const contentFileNames = ['package.json', 'package-lock.json', 'yarn.lock'];
|
const contentFileNames = ['package.json', 'package-lock.json', 'yarn.lock'];
|
||||||
async function downloadExtensionDetails(extension) {
|
async function downloadExtensionDetails(extension) {
|
||||||
var _a, _b, _c;
|
|
||||||
const extensionLabel = `${extension.name}@${extension.version}`;
|
const extensionLabel = `${extension.name}@${extension.version}`;
|
||||||
const repository = url.parse(extension.repo).path.substr(1);
|
const repository = url.parse(extension.repo).path.substr(1);
|
||||||
const repositoryContentBaseUrl = `https://${token ? `${token}@` : ''}${contentBasePath}/${repository}/v${extension.version}`;
|
const repositoryContentBaseUrl = `https://${token ? `${token}@` : ''}${contentBasePath}/${repository}/v${extension.version}`;
|
||||||
@@ -56,11 +55,11 @@ async function downloadExtensionDetails(extension) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Validation
|
// Validation
|
||||||
if (!((_a = results.find(r => r.fileName === 'package.json')) === null || _a === void 0 ? void 0 : _a.body)) {
|
if (!results.find(r => r.fileName === 'package.json')?.body) {
|
||||||
// throw new Error(`The "package.json" file could not be found for the built-in extension - ${extensionLabel}`);
|
// throw new Error(`The "package.json" file could not be found for the built-in extension - ${extensionLabel}`);
|
||||||
}
|
}
|
||||||
if (!((_b = results.find(r => r.fileName === 'package-lock.json')) === null || _b === void 0 ? void 0 : _b.body) &&
|
if (!results.find(r => r.fileName === 'package-lock.json')?.body &&
|
||||||
!((_c = results.find(r => r.fileName === 'yarn.lock')) === null || _c === void 0 ? void 0 : _c.body)) {
|
!results.find(r => r.fileName === 'yarn.lock')?.body) {
|
||||||
// throw new Error(`The "package-lock.json"/"yarn.lock" could not be found for the built-in extension - ${extensionLabel}`);
|
// throw new Error(`The "package-lock.json"/"yarn.lock" could not be found for the built-in extension - ${extensionLabel}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,10 +22,10 @@ function bundle(entryPoints, config, callback) {
|
|||||||
const allMentionedModulesMap = {};
|
const allMentionedModulesMap = {};
|
||||||
entryPoints.forEach((module) => {
|
entryPoints.forEach((module) => {
|
||||||
allMentionedModulesMap[module.name] = true;
|
allMentionedModulesMap[module.name] = true;
|
||||||
(module.include || []).forEach(function (includedModule) {
|
module.include?.forEach(function (includedModule) {
|
||||||
allMentionedModulesMap[includedModule] = true;
|
allMentionedModulesMap[includedModule] = true;
|
||||||
});
|
});
|
||||||
(module.exclude || []).forEach(function (excludedModule) {
|
module.exclude?.forEach(function (excludedModule) {
|
||||||
allMentionedModulesMap[excludedModule] = true;
|
allMentionedModulesMap[excludedModule] = true;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ function createCompile(src, build, emitError) {
|
|||||||
const tsb = require('gulp-tsb');
|
const tsb = require('gulp-tsb');
|
||||||
const sourcemaps = require('gulp-sourcemaps');
|
const sourcemaps = require('gulp-sourcemaps');
|
||||||
const projectPath = path.join(__dirname, '../../', src, 'tsconfig.json');
|
const projectPath = path.join(__dirname, '../../', src, 'tsconfig.json');
|
||||||
const overrideOptions = Object.assign(Object.assign({}, getTypeScriptCompilerOptions(src)), { inlineSources: Boolean(build) });
|
const overrideOptions = { ...getTypeScriptCompilerOptions(src), inlineSources: Boolean(build) };
|
||||||
if (!build) {
|
if (!build) {
|
||||||
overrideOptions.inlineSourceMap = true;
|
overrideOptions.inlineSourceMap = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ function asYarnDependency(prefix, tree) {
|
|||||||
return { name, version, path: dependencyPath, children };
|
return { name, version, path: dependencyPath, children };
|
||||||
}
|
}
|
||||||
function getYarnProductionDependencies(cwd) {
|
function getYarnProductionDependencies(cwd) {
|
||||||
const raw = cp.execSync('yarn list --json', { cwd, encoding: 'utf8', env: Object.assign(Object.assign({}, process.env), { NODE_ENV: 'production' }), stdio: [null, null, 'inherit'] });
|
const raw = cp.execSync('yarn list --json', { cwd, encoding: 'utf8', env: { ...process.env, NODE_ENV: 'production' }, stdio: [null, null, 'inherit'] });
|
||||||
const match = /^{"type":"tree".*$/m.exec(raw);
|
const match = /^{"type":"tree".*$/m.exec(raw);
|
||||||
if (!match || match.length !== 1) {
|
if (!match || match.length !== 1) {
|
||||||
throw new Error('Could not parse result of `yarn list --json`');
|
throw new Error('Could not parse result of `yarn list --json`');
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ const darwinCreditsTemplate = product.darwinCredits && _.template(fs.readFileSyn
|
|||||||
function darwinBundleDocumentType(extensions, icon, nameOrSuffix) {
|
function darwinBundleDocumentType(extensions, icon, nameOrSuffix) {
|
||||||
// If given a suffix, generate a name from it. If not given anything, default to 'document'
|
// If given a suffix, generate a name from it. If not given anything, default to 'document'
|
||||||
if (isDocumentSuffix(nameOrSuffix) || !nameOrSuffix) {
|
if (isDocumentSuffix(nameOrSuffix) || !nameOrSuffix) {
|
||||||
nameOrSuffix = icon.charAt(0).toUpperCase() + icon.slice(1) + ' ' + (nameOrSuffix !== null && nameOrSuffix !== void 0 ? nameOrSuffix : 'document');
|
nameOrSuffix = icon.charAt(0).toUpperCase() + icon.slice(1) + ' ' + (nameOrSuffix ?? 'document');
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
name: nameOrSuffix,
|
name: nameOrSuffix,
|
||||||
|
|||||||
@@ -14,9 +14,8 @@ module.exports = new class ApiLiteralOrTypes {
|
|||||||
create(context) {
|
create(context) {
|
||||||
return {
|
return {
|
||||||
['TSDeclareFunction Identifier[name=/create.*/]']: (node) => {
|
['TSDeclareFunction Identifier[name=/create.*/]']: (node) => {
|
||||||
var _a;
|
|
||||||
const decl = node.parent;
|
const decl = node.parent;
|
||||||
if (((_a = decl.returnType) === null || _a === void 0 ? void 0 : _a.typeAnnotation.type) !== experimental_utils_1.AST_NODE_TYPES.TSTypeReference) {
|
if (decl.returnType?.typeAnnotation.type !== experimental_utils_1.AST_NODE_TYPES.TSTypeReference) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (decl.returnType.typeAnnotation.typeName.type !== experimental_utils_1.AST_NODE_TYPES.Identifier) {
|
if (decl.returnType.typeAnnotation.typeName.type !== experimental_utils_1.AST_NODE_TYPES.Identifier) {
|
||||||
|
|||||||
@@ -25,8 +25,7 @@ module.exports = new (_a = class ApiEventNaming {
|
|||||||
const verbs = new Set(config.verbs);
|
const verbs = new Set(config.verbs);
|
||||||
return {
|
return {
|
||||||
['TSTypeAnnotation TSTypeReference Identifier[name="Event"]']: (node) => {
|
['TSTypeAnnotation TSTypeReference Identifier[name="Event"]']: (node) => {
|
||||||
var _a, _b;
|
const def = node.parent?.parent?.parent;
|
||||||
const def = (_b = (_a = node.parent) === null || _a === void 0 ? void 0 : _a.parent) === null || _b === void 0 ? void 0 : _b.parent;
|
|
||||||
const ident = this.getIdent(def);
|
const ident = this.getIdent(def);
|
||||||
if (!ident) {
|
if (!ident) {
|
||||||
// event on unknown structure...
|
// event on unknown structure...
|
||||||
|
|||||||
@@ -17,8 +17,7 @@ module.exports = new (_a = class ApiProviderNaming {
|
|||||||
const allowed = new Set(config.allowed);
|
const allowed = new Set(config.allowed);
|
||||||
return {
|
return {
|
||||||
['TSInterfaceDeclaration[id.name=/.+Provider/] TSMethodSignature']: (node) => {
|
['TSInterfaceDeclaration[id.name=/.+Provider/] TSMethodSignature']: (node) => {
|
||||||
var _a;
|
const interfaceName = node.parent?.parent.id.name;
|
||||||
const interfaceName = ((_a = node.parent) === null || _a === void 0 ? void 0 : _a.parent).id.name;
|
|
||||||
if (allowed.has(interfaceName)) {
|
if (allowed.has(interfaceName)) {
|
||||||
// allowed
|
// allowed
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -115,7 +115,10 @@ function fromLocalWebpack(extensionPath, webpackConfigFileName) {
|
|||||||
result.emit('error', compilation.warnings.join('\n'));
|
result.emit('error', compilation.warnings.join('\n'));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const webpackConfig = Object.assign(Object.assign({}, require(webpackConfigPath)), { mode: 'production' });
|
const webpackConfig = {
|
||||||
|
...require(webpackConfigPath),
|
||||||
|
...{ mode: 'production' }
|
||||||
|
};
|
||||||
const relativeOutputPath = path.relative(extensionPath, webpackConfig.output.path);
|
const relativeOutputPath = path.relative(extensionPath, webpackConfig.output.path);
|
||||||
return webpackGulp(webpackConfig, webpack, webpackDone)
|
return webpackGulp(webpackConfig, webpack, webpackDone)
|
||||||
.pipe(es.through(function (data) {
|
.pipe(es.through(function (data) {
|
||||||
@@ -411,7 +414,7 @@ async function webpackExtensions(taskName, isWatch, webpackConfigLocations) {
|
|||||||
reject();
|
reject();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
reporter(stats === null || stats === void 0 ? void 0 : stats.toJson());
|
reporter(stats?.toJson());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -422,7 +425,7 @@ async function webpackExtensions(taskName, isWatch, webpackConfigLocations) {
|
|||||||
reject();
|
reject();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
reporter(stats === null || stats === void 0 ? void 0 : stats.toJson());
|
reporter(stats?.toJson());
|
||||||
resolve();
|
resolve();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -209,15 +209,14 @@ let hasErrors = false;
|
|||||||
function checkFile(program, sourceFile, rule) {
|
function checkFile(program, sourceFile, rule) {
|
||||||
checkNode(sourceFile);
|
checkNode(sourceFile);
|
||||||
function checkNode(node) {
|
function checkNode(node) {
|
||||||
var _a, _b;
|
|
||||||
if (node.kind !== ts.SyntaxKind.Identifier) {
|
if (node.kind !== ts.SyntaxKind.Identifier) {
|
||||||
return ts.forEachChild(node, checkNode); // recurse down
|
return ts.forEachChild(node, checkNode); // recurse down
|
||||||
}
|
}
|
||||||
const text = node.getText(sourceFile);
|
const text = node.getText(sourceFile);
|
||||||
if ((_a = rule.allowedTypes) === null || _a === void 0 ? void 0 : _a.some(allowed => allowed === text)) {
|
if (rule.allowedTypes?.some(allowed => allowed === text)) {
|
||||||
return; // override
|
return; // override
|
||||||
}
|
}
|
||||||
if ((_b = rule.disallowedTypes) === null || _b === void 0 ? void 0 : _b.some(disallowed => disallowed === text)) {
|
if (rule.disallowedTypes?.some(disallowed => disallowed === text)) {
|
||||||
const { line, character } = sourceFile.getLineAndCharacterOfPosition(node.getStart());
|
const { line, character } = sourceFile.getLineAndCharacterOfPosition(node.getStart());
|
||||||
console.log(`[build/lib/layersChecker.ts]: Reference to '${text}' violates layer '${rule.target}' (${sourceFile.fileName} (${line + 1},${character + 1})`);
|
console.log(`[build/lib/layersChecker.ts]: Reference to '${text}' violates layer '${rule.target}' (${sourceFile.fileName} (${line + 1},${character + 1})`);
|
||||||
hasErrors = true;
|
hasErrors = true;
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ const rootDir = path.resolve(__dirname, '..', '..');
|
|||||||
function runProcess(command, args = []) {
|
function runProcess(command, args = []) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const child = (0, child_process_1.spawn)(command, args, { cwd: rootDir, stdio: 'inherit', env: process.env });
|
const child = (0, child_process_1.spawn)(command, args, { cwd: rootDir, stdio: 'inherit', env: process.env });
|
||||||
child.on('exit', err => !err ? resolve() : process.exit(err !== null && err !== void 0 ? err : 1));
|
child.on('exit', err => !err ? resolve() : process.exit(err ?? 1));
|
||||||
child.on('error', reject);
|
child.on('error', reject);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -22,7 +22,7 @@ async function exists(subdir) {
|
|||||||
await fs_1.promises.stat(path.join(rootDir, subdir));
|
await fs_1.promises.stat(path.join(rootDir, subdir));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch (_a) {
|
catch {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ function writeFile(filePath, contents) {
|
|||||||
fs.writeFileSync(filePath, contents);
|
fs.writeFileSync(filePath, contents);
|
||||||
}
|
}
|
||||||
function extractEditor(options) {
|
function extractEditor(options) {
|
||||||
var _a;
|
|
||||||
const ts = require('typescript');
|
const ts = require('typescript');
|
||||||
const tsConfig = JSON.parse(fs.readFileSync(path.join(options.sourcesRoot, 'tsconfig.monaco.json')).toString());
|
const tsConfig = JSON.parse(fs.readFileSync(path.join(options.sourcesRoot, 'tsconfig.monaco.json')).toString());
|
||||||
let compilerOptions;
|
let compilerOptions;
|
||||||
@@ -49,7 +48,7 @@ function extractEditor(options) {
|
|||||||
// Take the extra included .d.ts files from `tsconfig.monaco.json`
|
// Take the extra included .d.ts files from `tsconfig.monaco.json`
|
||||||
options.typings = tsConfig.include.filter(includedFile => /\.d\.ts$/.test(includedFile));
|
options.typings = tsConfig.include.filter(includedFile => /\.d\.ts$/.test(includedFile));
|
||||||
// Add extra .d.ts files from `node_modules/@types/`
|
// Add extra .d.ts files from `node_modules/@types/`
|
||||||
if (Array.isArray((_a = options.compilerOptions) === null || _a === void 0 ? void 0 : _a.types)) {
|
if (Array.isArray(options.compilerOptions?.types)) {
|
||||||
options.compilerOptions.types.forEach((type) => {
|
options.compilerOptions.types.forEach((type) => {
|
||||||
options.typings.push(`../node_modules/@types/${type}/index.d.ts`);
|
options.typings.push(`../node_modules/@types/${type}/index.d.ts`);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -304,7 +304,6 @@ function getElectronVersion() {
|
|||||||
}
|
}
|
||||||
exports.getElectronVersion = getElectronVersion;
|
exports.getElectronVersion = getElectronVersion;
|
||||||
function acquireWebNodePaths() {
|
function acquireWebNodePaths() {
|
||||||
var _a;
|
|
||||||
const root = path.join(__dirname, '..', '..');
|
const root = path.join(__dirname, '..', '..');
|
||||||
const webPackageJSON = path.join(root, '/remote/web', 'package.json');
|
const webPackageJSON = path.join(root, '/remote/web', 'package.json');
|
||||||
const webPackages = JSON.parse(fs.readFileSync(webPackageJSON, 'utf8')).dependencies;
|
const webPackages = JSON.parse(fs.readFileSync(webPackageJSON, 'utf8')).dependencies;
|
||||||
@@ -312,7 +311,7 @@ function acquireWebNodePaths() {
|
|||||||
for (const key of Object.keys(webPackages)) {
|
for (const key of Object.keys(webPackages)) {
|
||||||
const packageJSON = path.join(root, 'node_modules', key, 'package.json');
|
const packageJSON = path.join(root, 'node_modules', key, 'package.json');
|
||||||
const packageData = JSON.parse(fs.readFileSync(packageJSON, 'utf8'));
|
const packageData = JSON.parse(fs.readFileSync(packageJSON, 'utf8'));
|
||||||
let entryPoint = (_a = packageData.browser) !== null && _a !== void 0 ? _a : packageData.main;
|
let entryPoint = packageData.browser ?? packageData.main;
|
||||||
// On rare cases a package doesn't have an entrypoint so we assume it has a dist folder with a min.js
|
// On rare cases a package doesn't have an entrypoint so we assume it has a dist folder with a min.js
|
||||||
if (!entryPoint) {
|
if (!entryPoint) {
|
||||||
// TODO @lramos15 remove this when jschardet adds an entrypoint so we can warn on all packages w/out entrypoint
|
// TODO @lramos15 remove this when jschardet adds an entrypoint so we can warn on all packages w/out entrypoint
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es2017",
|
"target": "es2020",
|
||||||
|
"lib": ["ES2020"],
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"removeComments": false,
|
"removeComments": false,
|
||||||
"preserveConstEnums": true,
|
"preserveConstEnums": true,
|
||||||
|
|||||||
Reference in New Issue
Block a user