Hans 601f9b38f8 feat(@angular/cli): move angular-cli to @angular/cli (#4328)
This release is otherwise identical to beta.28.
2017-02-01 18:19:50 -08: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;