Skip to content

Commit 6affc7f

Browse files
committed
chore: change all Angular-CLI occurrences to Angular CLI
1 parent 0dc2200 commit 6affc7f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -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/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)