1
0
mirror of https://github.com/angular/angular-cli.git synced 2025-05-17 02:54:21 +08:00
Michał Gołębiowski 20484598dd chore: change all Angular-CLI occurrences to Angular CLI ()
* chore: change all Angular-CLI occurrences to Angular CLI

* docs: remove one remaining angular-cli reference
2017-02-03 15:50:24 +00:00

21 lines
453 B
TypeScript

const Command = require('../ember-cli/lib/models/command');
const SilentError = require('silent-error');
const DestroyCommand = Command.extend({
name: 'destroy',
aliases: ['d'],
works: 'insideProject',
anonymousOptions: [
'<blueprint>'
],
run: function() {
return Promise.reject(new SilentError('The destroy command is not supported by Angular CLI.'));
}
});
export default DestroyCommand;
DestroyCommand.overrideCore = true;