Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove ember references in console output #4026

Merged
merged 3 commits into from Jan 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/angular-cli/ember-cli/lib/cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ CLI.prototype.run = function(environment) {
if (!platform.isValid && !this.testing) {
if (platform.isDeprecated) {
this.ui.writeDeprecateLine('Node ' + process.version +
' is no longer supported by Ember CLI. Please update to a more recent version of Node');
' is no longer supported by Angular CLI. Please update to a more recent version of Node');
}

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

Expand Down
4 changes: 2 additions & 2 deletions packages/angular-cli/ember-cli/lib/commands/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ module.exports = Command.extend({
var blueprintName = rawArgs[0];

if (!blueprintName) {
return Promise.reject(new SilentError('The `ember generate` command requires a ' +
return Promise.reject(new SilentError('The `ng generate` command requires a ' +
'blueprint name to be specified. ' +
'For more details, use `ember help`.'));
'For more details, use `ng help`.'));
}
var Task = this.tasks.GenerateFromBlueprint;
var task = new Task({
Expand Down
1 change: 0 additions & 1 deletion packages/angular-cli/ember-cli/lib/commands/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
var Command = require('../models/command');
var SilentError = require('silent-error');
var path = require('path');
var win = require('../utilities/windows-admin');
var existsSync = require('exists-sync');

var defaultPort = 7357;
Expand Down
41 changes: 0 additions & 41 deletions packages/angular-cli/ember-cli/lib/utilities/windows-admin.js

This file was deleted.