Skip to content

Commit 74573ba

Browse files
sumitarorahansl
authored andcommitted
refactor: rebranding changes (angular#4602)
1 parent a22474e commit 74573ba

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ with NPM 3 or higher.
3535

3636
* [Installation](#installation)
3737
* [Usage](#usage)
38-
* [Generating a New Project](#generating-and-serving-an-angular2-project-via-a-development-server)
38+
* [Generating a New Project](#generating-and-serving-an-angular-project-via-a-development-server)
3939
* [Generating Components, Directives, Pipes and Services](#generating-components-directives-pipes-and-services)
4040
* [Updating Angular CLI](#updating-angular-cli)
4141
* [Development Hints for hacking on Angular CLI](#development-hints-for-hacking-on-angular-cli)
@@ -54,7 +54,7 @@ npm install -g @angular/cli
5454
ng help
5555
```
5656

57-
### Generating and serving an Angular2 project via a development server
57+
### Generating and serving an Angular project via a development server
5858

5959
```bash
6060
ng new PROJECT_NAME

packages/@angular/cli/blueprints/ng2/files/__path__/polyfills.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import 'core-js/es7/reflect';
5353
/***************************************************************************************************
5454
* Zone JS is required by Angular itself.
5555
*/
56-
import 'zone.js/dist/zone'; // Included with Angular-CLI.
56+
import 'zone.js/dist/zone'; // Included with Angular CLI.
5757

5858

5959

packages/@angular/cli/blueprints/ng2/files/protractor.conf.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ exports.config = {
2020
defaultTimeoutInterval: 30000,
2121
print: function() {}
2222
},
23-
useAllAngular2AppRoots: true,
2423
beforeLaunch: function() {
2524
require('ts-node').register({
2625
project: 'e2e'

packages/@angular/cli/models/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function getUserHome() {
3636

3737
export class CliConfig extends CliConfigBase<ConfigInterface> {
3838
static configFilePath(projectPath?: string): string {
39-
// Find the configuration, either where specified, in the angular-cli project
39+
// Find the configuration, either where specified, in the Angular CLI project
4040
// (if it's in node_modules) or from the current process.
4141
return (projectPath && _findUp(CLI_CONFIG_FILE_NAME, projectPath))
4242
|| (projectPath && _findUp(CLI_CONFIG_FILE_NAME_ALT, projectPath))

packages/@angular/cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
},
1010
"keywords": [
1111
"angular",
12-
"angular-cli"
12+
"angular-cli",
13+
"Angular CLI"
1314
],
1415
"repository": {
1516
"type": "git",

plugins/karma.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This file is necessary when using a linked angular-cli to this repo, meaning that
1+
// This file is necessary when using a linked @angular/cli to this repo, meaning that
22
// require('@angular/cli/plugins/karma') will load this file, and we just forward to
33
// the actual published file.
44
module.exports = require('../packages/@angular/cli/plugins/karma');

0 commit comments

Comments
 (0)