chore: remove ember-cli references in comments

This commit is contained in:
Jesper Rønn-Jensen 2016-06-08 23:30:19 +02:00 committed by Filipe Silva
parent b28c098fd0
commit b9a8ae4d63

6
bin/ng
View File

@ -13,14 +13,14 @@ resolve('angular-cli', { basedir: process.cwd() },
function (error, projectLocalCli) {
var cli;
if (error) {
// If there is an error, resolve could not find the ember-cli
// If there is an error, resolve could not find the ng-cli
// library from a package.json. Instead, include it from a relative
// path to this script file (which is likely a globally installed
// npm package). Most common cause for hitting this is `ember new`
// npm package). Most common cause for hitting this is `ng new`
cli = require('../lib/cli');
} else {
// No error implies a projectLocalCli, which will load whatever
// version of ember-cli you have installed in a local package.json
// version of ng-cli you have installed in a local package.json
cli = require(projectLocalCli);
}