You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.7 KiB
106 lines
3.7 KiB
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC 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
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const core_1 = require("@angular-devkit/core");
|
|
const workspace_1 = require("../../utility/workspace");
|
|
const workspace_models_1 = require("../../utility/workspace-models");
|
|
function default_1() {
|
|
return workspace_1.updateWorkspace((workspace) => {
|
|
// Remove deprecated CLI root level options
|
|
removeDeprecatedCLIOptions(workspace.extensions);
|
|
for (const [, project] of workspace.projects) {
|
|
// Project level
|
|
removeDeprecatedCLIOptions(project.extensions);
|
|
if (project.extensions.projectType !== workspace_models_1.ProjectType.Application) {
|
|
// Only interested in application projects since these changes only effects application builders
|
|
continue;
|
|
}
|
|
for (const [, target] of project.targets) {
|
|
// Only interested in Angular Devkit builders
|
|
if (!(target === null || target === void 0 ? void 0 : target.builder.startsWith('@angular-devkit/build-angular'))) {
|
|
continue;
|
|
}
|
|
let optionsToRemove = {
|
|
evalSourceMap: undefined,
|
|
skipAppShell: undefined,
|
|
profile: undefined,
|
|
elementExplorer: undefined,
|
|
};
|
|
if (target.builder === workspace_models_1.Builders.Server) {
|
|
optionsToRemove = {
|
|
...optionsToRemove,
|
|
vendorChunk: undefined,
|
|
commonChunk: undefined,
|
|
};
|
|
}
|
|
// Check options
|
|
if (target.options) {
|
|
target.options = {
|
|
...updateVendorSourceMap(target.options),
|
|
...optionsToRemove,
|
|
};
|
|
}
|
|
// Go through each configuration entry
|
|
if (!target.configurations) {
|
|
continue;
|
|
}
|
|
for (const configurationName of Object.keys(target.configurations)) {
|
|
target.configurations[configurationName] = {
|
|
...updateVendorSourceMap(target.configurations[configurationName]),
|
|
...optionsToRemove,
|
|
};
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
exports.default = default_1;
|
|
function updateVendorSourceMap(options) {
|
|
if (!options) {
|
|
return {};
|
|
}
|
|
const { vendorSourceMap: vendor, sourceMap = true } = options;
|
|
if (vendor === undefined) {
|
|
return options;
|
|
}
|
|
if (sourceMap === true) {
|
|
return {
|
|
...options,
|
|
sourceMap: {
|
|
styles: true,
|
|
scripts: true,
|
|
vendor,
|
|
},
|
|
vendorSourceMap: undefined,
|
|
};
|
|
}
|
|
if (typeof sourceMap === 'object') {
|
|
return {
|
|
...options,
|
|
sourceMap: {
|
|
...sourceMap,
|
|
vendor,
|
|
},
|
|
vendorSourceMap: undefined,
|
|
};
|
|
}
|
|
return {
|
|
...options,
|
|
vendorSourceMap: undefined,
|
|
};
|
|
}
|
|
function removeDeprecatedCLIOptions(extensions) {
|
|
const cliOptions = extensions === null || extensions === void 0 ? void 0 : extensions.cli;
|
|
if (cliOptions && core_1.isJsonObject(cliOptions) && core_1.isJsonObject(cliOptions.warnings)) {
|
|
cliOptions.warnings = {
|
|
...cliOptions.warnings,
|
|
typescriptMismatch: undefined,
|
|
};
|
|
}
|
|
}
|