mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 06:41:45 +08:00
This migration updates the current tsconfig for the applications in two ways. 1) removes `enableIvy: true` option since it's by default true. 2) Amends the files/exclude/include options to only include files that are needed in the compilation.
142 lines
4.4 KiB
TypeScript
142 lines
4.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { JsonAstObject } from '@angular-devkit/core';
|
|
import { Rule, Tree, UpdateRecorder } from '@angular-devkit/schematics';
|
|
import { getWorkspacePath } from '../../utility/config';
|
|
import {
|
|
appendValueInAstArray,
|
|
findPropertyInAstObject,
|
|
insertPropertyInAstObjectInOrder,
|
|
removePropertyInAstObject,
|
|
} from '../../utility/json-utils';
|
|
import { Builders } from '../../utility/workspace-models';
|
|
import { getAllOptions, getTargets, getWorkspace, isIvyEnabled } from './utils';
|
|
|
|
export const ANY_COMPONENT_STYLE_BUDGET = {
|
|
type: 'anyComponentStyle',
|
|
maximumWarning: '6kb',
|
|
};
|
|
|
|
export function updateWorkspaceConfig(): Rule {
|
|
return (tree: Tree) => {
|
|
const workspacePath = getWorkspacePath(tree);
|
|
const workspace = getWorkspace(tree);
|
|
const recorder = tree.beginUpdate(workspacePath);
|
|
|
|
for (const { target } of getTargets(workspace, 'build', Builders.Browser)) {
|
|
updateStyleOrScriptOption('styles', recorder, target);
|
|
updateStyleOrScriptOption('scripts', recorder, target);
|
|
addAnyComponentStyleBudget(recorder, target);
|
|
updateAotOption(tree, recorder, target);
|
|
}
|
|
|
|
for (const { target } of getTargets(workspace, 'test', Builders.Karma)) {
|
|
updateStyleOrScriptOption('styles', recorder, target);
|
|
updateStyleOrScriptOption('scripts', recorder, target);
|
|
}
|
|
|
|
tree.commitUpdate(recorder);
|
|
|
|
return tree;
|
|
};
|
|
}
|
|
|
|
function updateAotOption(tree: Tree, recorder: UpdateRecorder, builderConfig: JsonAstObject) {
|
|
const options = findPropertyInAstObject(builderConfig, 'options');
|
|
if (!options || options.kind !== 'object') {
|
|
return;
|
|
}
|
|
|
|
|
|
const tsConfig = findPropertyInAstObject(options, 'tsConfig');
|
|
// Do not add aot option if the users already opted out from Ivy.
|
|
if (tsConfig && tsConfig.kind === 'string' && !isIvyEnabled(tree, tsConfig.value)) {
|
|
return;
|
|
}
|
|
|
|
// Add aot to options.
|
|
const aotOption = findPropertyInAstObject(options, 'aot');
|
|
|
|
if (!aotOption) {
|
|
insertPropertyInAstObjectInOrder(recorder, options, 'aot', true, 12);
|
|
|
|
return;
|
|
}
|
|
|
|
if (aotOption.kind !== 'true') {
|
|
const { start, end } = aotOption;
|
|
recorder.remove(start.offset, end.offset - start.offset);
|
|
recorder.insertLeft(start.offset, 'true');
|
|
}
|
|
|
|
// Remove aot properties from other configurations as they are no redundant
|
|
const configOptions = getAllOptions(builderConfig, true);
|
|
for (const options of configOptions) {
|
|
removePropertyInAstObject(recorder, options, 'aot');
|
|
}
|
|
}
|
|
|
|
function updateStyleOrScriptOption(property: 'scripts' | 'styles', recorder: UpdateRecorder, builderConfig: JsonAstObject) {
|
|
const options = getAllOptions(builderConfig);
|
|
|
|
for (const option of options) {
|
|
const propertyOption = findPropertyInAstObject(option, property);
|
|
if (!propertyOption || propertyOption.kind !== 'array') {
|
|
continue;
|
|
}
|
|
|
|
for (const node of propertyOption.elements) {
|
|
if (!node || node.kind !== 'object') {
|
|
// skip non complex objects
|
|
continue;
|
|
}
|
|
|
|
const lazy = findPropertyInAstObject(node, 'lazy');
|
|
removePropertyInAstObject(recorder, node, 'lazy');
|
|
|
|
// if lazy was not true, it is redundant hence, don't add it
|
|
if (lazy && lazy.kind === 'true') {
|
|
insertPropertyInAstObjectInOrder(recorder, node, 'inject', false, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function addAnyComponentStyleBudget(recorder: UpdateRecorder, builderConfig: JsonAstObject) {
|
|
const options = getAllOptions(builderConfig, true);
|
|
|
|
for (const option of options) {
|
|
const budgetOption = findPropertyInAstObject(option, 'budgets');
|
|
if (!budgetOption) {
|
|
// add
|
|
insertPropertyInAstObjectInOrder(recorder, option, 'budgets', [ANY_COMPONENT_STYLE_BUDGET], 14);
|
|
continue;
|
|
}
|
|
|
|
if (budgetOption.kind !== 'array') {
|
|
continue;
|
|
}
|
|
|
|
// if 'anyComponentStyle' budget already exists don't add.
|
|
const hasAnyComponentStyle = budgetOption.elements.some(node => {
|
|
if (!node || node.kind !== 'object') {
|
|
// skip non complex objects
|
|
return false;
|
|
}
|
|
|
|
const budget = findPropertyInAstObject(node, 'type');
|
|
|
|
return !!budget && budget.kind === 'string' && budget.value === 'anyComponentStyle';
|
|
});
|
|
|
|
if (!hasAnyComponentStyle) {
|
|
appendValueInAstArray(recorder, budgetOption, ANY_COMPONENT_STYLE_BUDGET, 16);
|
|
}
|
|
}
|
|
}
|