UNPKG

1.08 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const core_1 = require("@angular-devkit/core");
4const command_1 = require("../models/command");
5class EjectCommand extends command_1.Command {
6 constructor() {
7 super(...arguments);
8 this.name = 'eject';
9 this.description = 'Temporarily disabled. Ejects your app and output the proper '
10 + 'webpack configuration and scripts.';
11 this.arguments = [];
12 this.options = [];
13 }
14 run() {
15 this.logger.info(core_1.tags.stripIndents `
16 The 'eject' command has been temporarily disabled, as it is not yet compatible with the new
17 angular.json format. The new configuration format provides further flexibility to modify the
18 configuration of your workspace without ejecting. Ejection will be re-enabled in a future
19 release of the CLI.
20
21 If you need to eject today, use CLI 1.7 to eject your project.
22 `);
23 }
24}
25exports.default = EjectCommand;
26//# sourceMappingURL=/Users/hansl/Sources/hansl/angular-cli/commands/eject.js.map
\No newline at end of file