File tree 4 files changed +4
-46
lines changed
packages/angular-cli/ember-cli/lib
4 files changed +4
-46
lines changed Original file line number Diff line number Diff line change @@ -62,12 +62,12 @@ CLI.prototype.run = function(environment) {
62
62
if ( ! platform . isValid && ! this . testing ) {
63
63
if ( platform . isDeprecated ) {
64
64
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' ) ;
66
66
}
67
67
68
68
if ( platform . isUntested ) {
69
69
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.' ) ;
71
71
}
72
72
}
73
73
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ module.exports = Command.extend({
35
35
var blueprintName = rawArgs [ 0 ] ;
36
36
37
37
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 ' +
39
39
'blueprint name to be specified. ' +
40
- 'For more details, use `ember help`.' ) ) ;
40
+ 'For more details, use `ng help`.' ) ) ;
41
41
}
42
42
var Task = this . tasks . GenerateFromBlueprint ;
43
43
var task = new Task ( {
Original file line number Diff line number Diff line change 3
3
var Command = require ( '../models/command' ) ;
4
4
var SilentError = require ( 'silent-error' ) ;
5
5
var path = require ( 'path' ) ;
6
- var win = require ( '../utilities/windows-admin' ) ;
7
6
var existsSync = require ( 'exists-sync' ) ;
8
7
9
8
var defaultPort = 7357 ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments