Commit 607adf63 authored by Ward Bell's avatar Ward Bell

chore: replace "angular 2" with "angular"

parent f95cf417
<a name="0.2.10"></a>
# 0.2.10 (2016-09-19)
* All "Angular 2" references become just "Angular"
* No code changes
<a name="0.2.9"></a> <a name="0.2.9"></a>
# 0.2.9 (2016-09-14) # 0.2.9 (2016-09-14)
* Angular 2.0.0 version * Angular 2.0.0 version
......
# To build and run with Docker: # To build and run with Docker:
# #
# $ docker build -t ng2-quickstart . # $ docker build -t ng-quickstart .
# $ docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart # $ docker run -it --rm -p 3000:3000 -p 3001:3001 ng-quickstart
# #
FROM node:latest FROM node:latest
......
# Angular 2 QuickStart Source # Angular QuickStart Source
[![Build Status][travis-badge]][travis-badge-url] [![Build Status][travis-badge]][travis-badge-url]
This repository holds the TypeScript source code of the [angular.io quickstart](https://angular.io/docs/ts/latest/quickstart.html), 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 ...@@ -7,14 +7,14 @@ the foundation for most of the documentation samples and potentially a good star
It's been extended with testing support so you can start writing tests immediately. It's been extended with testing support so you can start writing tests immediately.
**This is not the perfect arrangement for your application. It is not designed for production. **This is not the perfect arrangement for your application. It is not designed for production.
It exists primarily to get you started quickly with learning and prototyping in Angular 2** It exists primarily to get you started quickly with learning and prototyping in Angular**
We are unlikely to accept suggestions about how to grow this QuickStart into something it is not. We are unlikely to accept suggestions about how to grow this QuickStart into something it is not.
Please keep that in mind before posting issues and PRs. Please keep that in mind before posting issues and PRs.
## Prerequisites ## Prerequisites
Node.js and npm are essential to Angular 2 development. Node.js and npm are essential to Angular development.
<a href="https://docs.npmjs.com/getting-started/installing-node" target="_blank" title="Installing Node.js and updating npm"> <a href="https://docs.npmjs.com/getting-started/installing-node" target="_blank" title="Installing Node.js and updating npm">
Get it now</a> if it's not already installed on your machine. Get it now</a> if it's not already installed on your machine.
......
...@@ -32,6 +32,6 @@ describe('AppComponent with TCB', function () { ...@@ -32,6 +32,6 @@ describe('AppComponent with TCB', function () {
h1 = fixture.debugElement.query(By.css('h1')).nativeElement; // preferred h1 = fixture.debugElement.query(By.css('h1')).nativeElement; // preferred
expect(h1.innerText).toMatch(/angular 2 app/i, '<h1> should say something about "Angular 2 App"'); expect(h1.innerText).toMatch(/angular app/i, '<h1> should say something about "Angular App"');
}); });
}); });
...@@ -2,6 +2,6 @@ import { Component } from '@angular/core'; ...@@ -2,6 +2,6 @@ import { Component } from '@angular/core';
@Component({ @Component({
selector: 'my-app', selector: 'my-app',
template: '<h1>My First Angular 2 App</h1>' template: '<h1>My First Angular App</h1>'
}) })
export class AppComponent { } export class AppComponent { }
describe('QuickStart E2E Tests', function () { describe('QuickStart E2E Tests', function () {
let expectedMsg = 'My First Angular 2 App'; let expectedMsg = 'My First Angular App';
beforeEach(function () { beforeEach(function () {
......
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Angular 2 QuickStart</title> <title>Angular QuickStart</title>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css"> <link rel="stylesheet" href="styles.css">
......
{ {
"name": "angular2-quickstart", "name": "angular-quickstart",
"version": "1.0.0", "version": "1.0.0",
"description": "QuickStart package.json from the documentation, supplemented with testing support", "description": "QuickStart package.json from the documentation, supplemented with testing support",
"scripts": { "scripts": {
......
...@@ -30,7 +30,7 @@ exports.config = { ...@@ -30,7 +30,7 @@ exports.config = {
specs: ['**/*e2e-spec.js' ], specs: ['**/*e2e-spec.js' ],
// For angular2 tests // For angular tests
useAllAngular2AppRoots: true, useAllAngular2AppRoots: true,
// Base URL for application server // Base URL for application server
......
/** /**
* System configuration for Angular 2 samples * System configuration for Angular samples
* Adjust as necessary for your application needs. * Adjust as necessary for your application needs.
*/ */
(function (global) { (function (global) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment