@angular/cli
Version:
CLI tool for Angular
171 lines • 5.77 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const fs = require("fs");
const path = require("path");
const chalk = require("chalk");
const denodeify = require("denodeify");
const init_1 = require("./init");
const config_1 = require("../models/config");
const validate_project_name_1 = require("../utilities/validate-project-name");
const common_tags_1 = require("common-tags");
const Command = require('../ember-cli/lib/models/command');
const Project = require('../ember-cli/lib/models/project');
const SilentError = require('silent-error');
const mkdir = denodeify(fs.mkdir);
const NewCommand = Command.extend({
name: 'new',
description: `Creates a new directory and a new Angular app eg. "ng new [name]".`,
works: 'outsideProject',
availableOptions: [
{
name: 'dry-run',
type: Boolean,
default: false,
aliases: ['d'],
description: 'Run through without making any changes.'
},
{
name: 'verbose',
type: Boolean,
default: false,
aliases: ['v'],
description: 'Adds more details to output logging.'
},
{
name: 'link-cli',
type: Boolean,
default: false,
aliases: ['lc'],
description: 'Automatically link the `@angular/cli` package.',
hidden: true
},
{
name: 'skip-install',
type: Boolean,
default: false,
aliases: ['si'],
description: 'Skip installing packages.'
},
{
name: 'skip-git',
type: Boolean,
default: false,
aliases: ['sg'],
description: 'Skip initializing a git repository.'
},
{
name: 'skip-tests',
type: Boolean,
default: false,
aliases: ['st'],
description: 'Skip creating spec files.'
},
{
name: 'skip-commit',
type: Boolean,
default: false,
aliases: ['sc'],
description: 'Skip committing the first commit to git.'
},
{
name: 'directory',
type: String,
aliases: ['dir'],
description: 'The directory name to create the app in.'
},
{
name: 'source-dir',
type: String,
default: 'src',
aliases: ['sd'],
description: 'The name of the source directory.'
},
{
name: 'style',
type: String,
default: 'css',
description: 'The style file default extension.'
},
{
name: 'prefix',
type: String,
default: 'app',
aliases: ['p'],
description: 'The prefix to use for all component selectors.'
},
{
name: 'routing',
type: Boolean,
default: false,
description: 'Generate a routing module.'
},
{
name: 'inline-style',
type: Boolean,
default: false,
aliases: ['is'],
description: 'Should have an inline style.'
},
{
name: 'inline-template',
type: Boolean,
default: false,
aliases: ['it'],
description: 'Should have an inline template.'
}
],
isProject: function (projectPath) {
return config_1.CliConfig.fromProject(projectPath) !== null;
},
run: function (commandOptions, rawArgs) {
const packageName = rawArgs.shift();
if (!packageName) {
return Promise.reject(new SilentError(`The "ng ${this.name}" command requires a name argument to be specified eg. ` +
chalk.yellow('ng new [name] ') +
`For more details, use "ng help".`));
}
validate_project_name_1.validateProjectName(packageName);
commandOptions.name = packageName;
if (commandOptions.dryRun) {
commandOptions.skipGit = true;
}
const directoryName = path.join(process.cwd(), commandOptions.directory ? commandOptions.directory : packageName);
const initCommand = new init_1.default({
ui: this.ui,
tasks: this.tasks,
project: Project.nullProject(this.ui, this.cli)
});
let createDirectory;
if (commandOptions.dryRun) {
createDirectory = Promise.resolve()
.then(() => {
if (fs.existsSync(directoryName) && this.isProject(directoryName)) {
throw new SilentError(common_tags_1.oneLine `
Directory ${directoryName} exists and is already an Angular CLI project.
`);
}
});
}
else {
createDirectory = mkdir(directoryName)
.catch(err => {
if (err.code === 'EEXIST') {
if (this.isProject(directoryName)) {
throw new SilentError(common_tags_1.oneLine `
Directory ${directoryName} exists and is already an Angular CLI project.
`);
}
}
else {
throw err;
}
})
.then(() => process.chdir(directoryName));
}
return createDirectory
.then(initCommand.run.bind(initCommand, commandOptions, rawArgs));
}
});
NewCommand.overrideCore = true;
exports.default = NewCommand;
//# sourceMappingURL=/users/hansl/sources/angular-cli/commands/new.js.map