mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 20:52:06 +08:00
All TypeScript files have been updated to pass the new eslint-based linting checks. eslint compatible disabling comments have also been added in place of the previous tslint comments.
105 lines
2.9 KiB
TypeScript
105 lines
2.9 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 {
|
|
Rule,
|
|
SchematicContext,
|
|
SchematicsException,
|
|
Tree,
|
|
apply,
|
|
chain,
|
|
empty,
|
|
mergeWith,
|
|
move,
|
|
noop,
|
|
schematic,
|
|
} from '@angular-devkit/schematics';
|
|
import {
|
|
NodePackageInstallTask,
|
|
NodePackageLinkTask,
|
|
RepositoryInitializerTask,
|
|
} from '@angular-devkit/schematics/tasks';
|
|
import { Schema as ApplicationOptions } from '../application/schema';
|
|
import { validateProjectName } from '../utility/validation';
|
|
import { Schema as WorkspaceOptions } from '../workspace/schema';
|
|
import { Schema as NgNewOptions } from './schema';
|
|
|
|
export default function (options: NgNewOptions): Rule {
|
|
if (!options.name) {
|
|
throw new SchematicsException(`Invalid options, "name" is required.`);
|
|
}
|
|
|
|
validateProjectName(options.name);
|
|
|
|
if (!options.directory) {
|
|
options.directory = options.name;
|
|
}
|
|
|
|
const workspaceOptions: WorkspaceOptions = {
|
|
name: options.name,
|
|
version: options.version,
|
|
newProjectRoot: options.newProjectRoot,
|
|
minimal: options.minimal,
|
|
strict: options.strict,
|
|
packageManager: options.packageManager,
|
|
};
|
|
const applicationOptions: ApplicationOptions = {
|
|
projectRoot: '',
|
|
name: options.name,
|
|
inlineStyle: options.inlineStyle,
|
|
inlineTemplate: options.inlineTemplate,
|
|
prefix: options.prefix,
|
|
viewEncapsulation: options.viewEncapsulation,
|
|
routing: options.routing,
|
|
style: options.style,
|
|
skipTests: options.skipTests,
|
|
skipPackageJson: false,
|
|
// always 'skipInstall' here, so that we do it after the move
|
|
skipInstall: true,
|
|
strict: options.strict,
|
|
minimal: options.minimal,
|
|
legacyBrowsers: options.legacyBrowsers || undefined,
|
|
};
|
|
|
|
return chain([
|
|
mergeWith(
|
|
apply(empty(), [
|
|
schematic('workspace', workspaceOptions),
|
|
options.createApplication ? schematic('application', applicationOptions) : noop,
|
|
move(options.directory),
|
|
]),
|
|
),
|
|
(_host: Tree, context: SchematicContext) => {
|
|
let packageTask;
|
|
if (!options.skipInstall) {
|
|
packageTask = context.addTask(
|
|
new NodePackageInstallTask({
|
|
workingDirectory: options.directory,
|
|
packageManager: options.packageManager,
|
|
}),
|
|
);
|
|
if (options.linkCli) {
|
|
packageTask = context.addTask(
|
|
new NodePackageLinkTask('@angular/cli', options.directory),
|
|
[packageTask],
|
|
);
|
|
}
|
|
}
|
|
if (!options.skipGit) {
|
|
const commit =
|
|
typeof options.commit == 'object' ? options.commit : options.commit ? {} : false;
|
|
|
|
context.addTask(
|
|
new RepositoryInitializerTask(options.directory, commit),
|
|
packageTask ? [packageTask] : [],
|
|
);
|
|
}
|
|
},
|
|
]);
|
|
}
|