Skip to content

Commit 394aa05

Browse files
clydinhansl
authored andcommitted
fix(help): remove ember references in console output (#4026)
1 parent c9ac263 commit 394aa05

File tree

4 files changed

+4
-46
lines changed

4 files changed

+4
-46
lines changed

packages/angular-cli/ember-cli/lib/cli/cli.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ CLI.prototype.run = function(environment) {
6262
if (!platform.isValid && !this.testing) {
6363
if (platform.isDeprecated) {
6464
this.ui.writeDeprecateLine('Node ' + process.version +
65-
' is no longer supported by Ember CLI. Please update to a more recent version of Node');
65+
' is no longer supported by Angular CLI. Please update to a more recent version of Node');
6666
}
6767

6868
if (platform.isUntested) {
6969
this.ui.writeWarnLine('WARNING: Node ' + process.version +
70-
' has currently not been tested against Ember CLI and may result in unexpected behaviour.');
70+
' has currently not been tested against Angular CLI and may result in unexpected behaviour.');
7171
}
7272
}
7373

packages/angular-cli/ember-cli/lib/commands/generate.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ module.exports = Command.extend({
3535
var blueprintName = rawArgs[0];
3636

3737
if (!blueprintName) {
38-
return Promise.reject(new SilentError('The `ember generate` command requires a ' +
38+
return Promise.reject(new SilentError('The `ng generate` command requires a ' +
3939
'blueprint name to be specified. ' +
40-
'For more details, use `ember help`.'));
40+
'For more details, use `ng help`.'));
4141
}
4242
var Task = this.tasks.GenerateFromBlueprint;
4343
var task = new Task({

packages/angular-cli/ember-cli/lib/commands/test.js

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
var Command = require('../models/command');
44
var SilentError = require('silent-error');
55
var path = require('path');
6-
var win = require('../utilities/windows-admin');
76
var existsSync = require('exists-sync');
87

98
var defaultPort = 7357;

packages/angular-cli/ember-cli/lib/utilities/windows-admin.js

-41
This file was deleted.

0 commit comments

Comments
 (0)