mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-24 08:06:17 +08:00
51 lines
1.8 KiB
TypeScript
51 lines
1.8 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 { Rule } from '@angular-devkit/schematics';
|
|
import { removePackageJsonDependency } from '../../utility/dependencies';
|
|
import { findPropertyInAstObject, removePropertyInAstObject } from '../../utility/json-utils';
|
|
import { Builders } from '../../utility/workspace-models';
|
|
import { getAllOptions, getTargets, getWorkspace, readJsonFileAsAstObject } from './utils';
|
|
|
|
/**
|
|
* Remove tsickle from libraries
|
|
*/
|
|
export function removeTsickle(): Rule {
|
|
return (tree, context) => {
|
|
removePackageJsonDependency(tree, 'tsickle');
|
|
const logger = context.logger;
|
|
const workspace = getWorkspace(tree);
|
|
|
|
for (const { target } of getTargets(workspace, 'build', Builders.NgPackagr)) {
|
|
for (const options of getAllOptions(target)) {
|
|
const tsConfigOption = findPropertyInAstObject(options, 'tsConfig');
|
|
if (!tsConfigOption || tsConfigOption.kind !== 'string') {
|
|
continue;
|
|
}
|
|
|
|
const tsConfigPath = tsConfigOption.value;
|
|
const tsConfigAst = readJsonFileAsAstObject(tree, tsConfigPath);
|
|
if (!tsConfigAst) {
|
|
logger.warn(`Cannot find file: ${tsConfigPath}`);
|
|
|
|
continue;
|
|
}
|
|
|
|
const ngCompilerOptions = findPropertyInAstObject(tsConfigAst, 'angularCompilerOptions');
|
|
if (ngCompilerOptions && ngCompilerOptions.kind === 'object') {
|
|
// remove annotateForClosureCompiler option
|
|
const recorder = tree.beginUpdate(tsConfigPath);
|
|
removePropertyInAstObject(recorder, ngCompilerOptions, 'annotateForClosureCompiler');
|
|
tree.commitUpdate(recorder);
|
|
}
|
|
}
|
|
}
|
|
|
|
return tree;
|
|
};
|
|
}
|