mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
import { strings } from '@angular-devkit/core';
|
|
import {
|
|
Rule,
|
|
Tree,
|
|
apply,
|
|
applyTemplates,
|
|
chain,
|
|
filter,
|
|
mergeWith,
|
|
move,
|
|
noop,
|
|
url,
|
|
} from '@angular-devkit/schematics';
|
|
import { parseName } from '../utility/parse-name';
|
|
import { createDefaultPath } from '../utility/workspace';
|
|
import { Schema } from './schema';
|
|
|
|
export default function (options: Schema): Rule {
|
|
return async (host: Tree) => {
|
|
if (options.path === undefined) {
|
|
options.path = await createDefaultPath(host, options.project as string);
|
|
}
|
|
|
|
const parsedPath = parseName(options.path, options.name);
|
|
options.name = parsedPath.name;
|
|
options.path = parsedPath.path;
|
|
|
|
const templateSource = apply(url('./files'), [
|
|
options.skipTests ? filter((path) => !path.endsWith('.spec.ts.template')) : noop(),
|
|
applyTemplates({
|
|
...strings,
|
|
...options,
|
|
}),
|
|
move(parsedPath.path + (options.flat ? '' : '/' + strings.dasherize(options.name))),
|
|
]);
|
|
|
|
return chain([mergeWith(templateSource)]);
|
|
};
|
|
}
|