Skip to content

Commit 2048459

Browse files
mgolfilipesilva
authored andcommitted
chore: change all Angular-CLI occurrences to Angular CLI (#4402)
* chore: change all Angular-CLI occurrences to Angular CLI * docs: remove one remaining angular-cli reference
1 parent 0dc2200 commit 2048459

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to Angular CLI
22

3-
We would love for you to contribute to angular-cli and help make it even better
3+
We would love for you to contribute to Angular CLI and help make it even better
44
than it is today! As a contributor, here are the guidelines we would like you
55
to follow:
66

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Angular-CLI
1+
## Angular CLI
22

33
[![Join the chat at https://gitter.im/angular/angular-cli](https://badges.gitter.im/angular/angular-cli.svg)](https://gitter.im/angular/angular-cli?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44

@@ -59,7 +59,7 @@ with NPM 3 or higher.
5959

6060
**BEFORE YOU INSTALL:** please read the [prerequisites](#prerequisites)
6161
```bash
62-
npm install -g angular-cli
62+
npm install -g @angular/cli
6363
```
6464

6565
## Usage
@@ -292,7 +292,7 @@ You can add more global styles via the `apps[0].styles` property in `angular-cli
292292

293293
### CSS Preprocessor integration
294294

295-
Angular-CLI supports all major CSS preprocessors:
295+
Angular CLI supports all major CSS preprocessors:
296296
- sass/scss ([http://sass-lang.com/](http://sass-lang.com/))
297297
- less ([http://lesscss.org/](http://lesscss.org/))
298298
- stylus ([http://stylus-lang.com/](http://stylus-lang.com/))

docs/design/third-party-libraries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ its `(pre|post|)install` hooks only on packages that are newly installed. It sho
102102
packages should be kept before performing `npm install`.
103103

104104
# <a name="appData">appData</a>
105-
The `angular-cli` key in the generated app should be used for `angular-cli` specific data.
105+
The `angular-cli` key in the generated app should be used for Angular CLI specific data.
106106
This includes the CLI configuration itself, as well as third-parties library configuration.
107107

108108
Third-parties can store data that will be passed to the app, and can use that data themselves.

docs/documentation/stories/css-preprocessors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CSS Preprocessor integration
22

3-
Angular-CLI supports all major CSS preprocessors:
3+
Angular CLI supports all major CSS preprocessors:
44
- sass/scss ([http://sass-lang.com/](http://sass-lang.com/))
55
- less ([http://lesscss.org/](http://lesscss.org/))
66
- stylus ([http://stylus-lang.com/](http://stylus-lang.com/))

packages/@angular/cli/blueprints/ng2/files/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Before running the tests make sure you are serving the app via `ng serve`.
2424

2525
## Further help
2626

27-
To get more help on the Angular CLI use `ng help` or go check out the [Angular-CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
27+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

packages/@angular/cli/commands/destroy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const DestroyCommand = Command.extend({
1212
],
1313

1414
run: function() {
15-
return Promise.reject(new SilentError('The destroy command is not supported by Angular-CLI.'));
15+
return Promise.reject(new SilentError('The destroy command is not supported by Angular CLI.'));
1616
}
1717
});
1818

packages/@angular/cli/lib/cli/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Error.stackTraceLimit = Infinity;
1515

1616
module.exports = function(options) {
1717

18-
// patch UI to not print Ember-CLI warnings (which don't apply to Angular-CLI)
18+
// patch UI to not print Ember-CLI warnings (which don't apply to Angular CLI)
1919
UI.prototype.writeWarnLine = function () { }
2020

2121
// patch Watcher to always default to node, not checking for Watchman

tests/acceptance/destroy.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ describe('Acceptance: ng destroy', function () {
2323
return ng(['destroy']).then(() => {
2424
throw new SilentError('ng destroy should fail.');
2525
}, (err) => {
26-
expect(err.message).to.equal('The destroy command is not supported by Angular-CLI.');
26+
expect(err.message).to.equal('The destroy command is not supported by Angular CLI.');
2727
});
2828
});
2929

3030
it('with args should fail', function () {
3131
return ng(['destroy', 'something']).then(() => {
3232
throw new SilentError('ng destroy something should fail.');
3333
}, (err) => {
34-
expect(err.message).to.equal('The destroy command is not supported by Angular-CLI.');
34+
expect(err.message).to.equal('The destroy command is not supported by Angular CLI.');
3535
});
3636
});
3737
});

0 commit comments

Comments
 (0)