We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b90a110 commit e97fd9fCopy full SHA for e97fd9f
lib/cli/index.js
@@ -74,6 +74,10 @@ module.exports = function(options) {
74
if (line.match(/version:|WARNING:/)) {
75
return;
76
}
77
+ if (line.match(/ember-cli-(inject-)?live-reload/)) {
78
+ // don't replace 'ember-cli-live-reload' on ng init diffs
79
+ return oldStdoutWrite.apply(process.stdout, arguments);
80
+ }
81
line = line.replace(/ember-cli(?!.com)/g, 'angular-cli')
82
.replace(/ember(?!-cli.com)/g, 'ng');
83
return oldStdoutWrite.apply(process.stdout, arguments);
0 commit comments