Skip to content

Commit

Permalink
chore: change all Angular-CLI occurrences to Angular CLI (#4402)
Browse files Browse the repository at this point in the history
* chore: change all Angular-CLI occurrences to Angular CLI

* docs: remove one remaining angular-cli reference
  • Loading branch information
mgol authored and filipesilva committed Feb 3, 2017
1 parent 0dc2200 commit 2048459
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to Angular CLI

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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Angular-CLI
## Angular CLI

[![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)

Expand Down Expand Up @@ -59,7 +59,7 @@ with NPM 3 or higher.

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

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

### CSS Preprocessor integration

Angular-CLI supports all major CSS preprocessors:
Angular CLI supports all major CSS preprocessors:
- sass/scss ([http://sass-lang.com/](http://sass-lang.com/))
- less ([http://lesscss.org/](http://lesscss.org/))
- stylus ([http://stylus-lang.com/](http://stylus-lang.com/))
Expand Down
2 changes: 1 addition & 1 deletion docs/design/third-party-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ its `(pre|post|)install` hooks only on packages that are newly installed. It sho
packages should be kept before performing `npm install`.

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

Third-parties can store data that will be passed to the app, and can use that data themselves.
Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/stories/css-preprocessors.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CSS Preprocessor integration

Angular-CLI supports all major CSS preprocessors:
Angular CLI supports all major CSS preprocessors:
- sass/scss ([http://sass-lang.com/](http://sass-lang.com/))
- less ([http://lesscss.org/](http://lesscss.org/))
- stylus ([http://stylus-lang.com/](http://stylus-lang.com/))
Expand Down
2 changes: 1 addition & 1 deletion packages/@angular/cli/blueprints/ng2/files/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ Before running the tests make sure you are serving the app via `ng serve`.

## Further help

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).
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).
2 changes: 1 addition & 1 deletion packages/@angular/cli/commands/destroy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const DestroyCommand = Command.extend({
],

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

Expand Down
2 changes: 1 addition & 1 deletion packages/@angular/cli/lib/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Error.stackTraceLimit = Infinity;

module.exports = function(options) {

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

// patch Watcher to always default to node, not checking for Watchman
Expand Down
4 changes: 2 additions & 2 deletions tests/acceptance/destroy.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ describe('Acceptance: ng destroy', function () {
return ng(['destroy']).then(() => {
throw new SilentError('ng destroy should fail.');
}, (err) => {
expect(err.message).to.equal('The destroy command is not supported by Angular-CLI.');
expect(err.message).to.equal('The destroy command is not supported by Angular CLI.');
});
});

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

0 comments on commit 2048459

Please sign in to comment.