| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "use strict";
- /**
- * @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
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- const schematic_command_1 = require("../models/schematic-command");
- class NewCommand extends schematic_command_1.SchematicCommand {
- constructor() {
- super(...arguments);
- this.allowMissingWorkspace = true;
- this.schematicName = 'ng-new';
- }
- async initialize(options) {
- if (options.collection) {
- this.collectionName = options.collection;
- }
- else {
- this.collectionName = this.parseCollectionName(options);
- }
- return super.initialize(options);
- }
- async run(options) {
- // Register the version of the CLI in the registry.
- const packageJson = require('../package.json');
- const version = packageJson.version;
- this._workflow.registry.addSmartDefaultProvider('ng-cli-version', () => version);
- return this.runSchematic({
- collectionName: this.collectionName,
- schematicName: this.schematicName,
- schematicOptions: options['--'] || [],
- debug: !!options.debug,
- dryRun: !!options.dryRun,
- force: !!options.force,
- });
- }
- parseCollectionName(options) {
- return options.collection || this.getDefaultSchematicCollection();
- }
- }
- exports.NewCommand = NewCommand;
|