UNPKG

627 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const Command = require('../ember-cli/lib/models/command');
4const SilentError = require('silent-error');
5const DestroyCommand = Command.extend({
6 name: 'destroy',
7 aliases: ['d'],
8 works: 'insideProject',
9 anonymousOptions: [
10 '<blueprint>'
11 ],
12 run: function () {
13 return Promise.reject(new SilentError('The destroy command is not supported by Angular CLI.'));
14 }
15});
16exports.default = DestroyCommand;
17DestroyCommand.overrideCore = true;
18//# sourceMappingURL=/users/hans/sources/angular-cli/commands/destroy.js.map
\No newline at end of file