Skip to content

Commit 607adf6

Browse files
committed
chore: replace "angular 2" with "angular"
1 parent f95cf41 commit 607adf6

File tree

10 files changed

+17
-12
lines changed

10 files changed

+17
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<a name="0.2.10"></a>
2+
# 0.2.10 (2016-09-19)
3+
* All "Angular 2" references become just "Angular"
4+
* No code changes
5+
16
<a name="0.2.9"></a>
27
# 0.2.9 (2016-09-14)
38
* Angular 2.0.0 version

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To build and run with Docker:
22
#
3-
# $ docker build -t ng2-quickstart .
4-
# $ docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart
3+
# $ docker build -t ng-quickstart .
4+
# $ docker run -it --rm -p 3000:3000 -p 3001:3001 ng-quickstart
55
#
66
FROM node:latest
77

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Angular 2 QuickStart Source
1+
# Angular QuickStart Source
22
[![Build Status][travis-badge]][travis-badge-url]
33

44
This repository holds the TypeScript source code of the [angular.io quickstart](https://angular.io/docs/ts/latest/quickstart.html),
@@ -7,14 +7,14 @@ the foundation for most of the documentation samples and potentially a good star
77
It's been extended with testing support so you can start writing tests immediately.
88

99
**This is not the perfect arrangement for your application. It is not designed for production.
10-
It exists primarily to get you started quickly with learning and prototyping in Angular 2**
10+
It exists primarily to get you started quickly with learning and prototyping in Angular**
1111

1212
We are unlikely to accept suggestions about how to grow this QuickStart into something it is not.
1313
Please keep that in mind before posting issues and PRs.
1414

1515
## Prerequisites
1616

17-
Node.js and npm are essential to Angular 2 development.
17+
Node.js and npm are essential to Angular development.
1818

1919
<a href="https://docs.npmjs.com/getting-started/installing-node" target="_blank" title="Installing Node.js and updating npm">
2020
Get it now</a> if it's not already installed on your machine.

app/app.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ describe('AppComponent with TCB', function () {
3232

3333
h1 = fixture.debugElement.query(By.css('h1')).nativeElement; // preferred
3434

35-
expect(h1.innerText).toMatch(/angular 2 app/i, '<h1> should say something about "Angular 2 App"');
35+
expect(h1.innerText).toMatch(/angular app/i, '<h1> should say something about "Angular App"');
3636
});
3737
});

app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { Component } from '@angular/core';
22

33
@Component({
44
selector: 'my-app',
5-
template: '<h1>My First Angular 2 App</h1>'
5+
template: '<h1>My First Angular App</h1>'
66
})
77
export class AppComponent { }

e2e/app.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
describe('QuickStart E2E Tests', function () {
33

4-
let expectedMsg = 'My First Angular 2 App';
4+
let expectedMsg = 'My First Angular App';
55

66

77
beforeEach(function () {

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Angular 2 QuickStart</title>
4+
<title>Angular QuickStart</title>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<link rel="stylesheet" href="styles.css">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "angular2-quickstart",
2+
"name": "angular-quickstart",
33
"version": "1.0.0",
44
"description": "QuickStart package.json from the documentation, supplemented with testing support",
55
"scripts": {

protractor.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ exports.config = {
3030
specs: ['**/*e2e-spec.js' ],
3131

3232

33-
// For angular2 tests
33+
// For angular tests
3434
useAllAngular2AppRoots: true,
3535

3636
// Base URL for application server

systemjs.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* System configuration for Angular 2 samples
2+
* System configuration for Angular samples
33
* Adjust as necessary for your application needs.
44
*/
55
(function (global) {

0 commit comments

Comments
 (0)