@angular/cli
Version:
CLI tool for Angular
19 lines • 646 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Command = require('../ember-cli/lib/models/command');
const SilentError = require('silent-error');
const DestroyCommand = Command.extend({
name: 'destroy',
aliases: ['d'],
works: 'insideProject',
hidden: true,
anonymousOptions: [
'<blueprint>'
],
run: function () {
return Promise.reject(new SilentError('The destroy command is not supported by Angular CLI.'));
}
});
exports.default = DestroyCommand;
DestroyCommand.overrideCore = true;
//# sourceMappingURL=/users/hansl/sources/angular-cli/commands/destroy.js.map