Skip to content

Commit 865e934

Browse files
committed
Updated docs, files and package json for Angular 8 upgrade
1 parent de6ab1a commit 865e934

File tree

9 files changed

+25
-23
lines changed

9 files changed

+25
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
![logo](https://jerouw.nl/wp-content/uploads/2017/05/ngfbmd.png "Logo")
88

9-
# Angular 8 beta | Material Design | Firebase - Starter kit
9+
# Angular 8 | Material Design | Firebase - Starter kit
1010

11-
A full stack starter app containing [Angular 8 beta](https://angular.io), [Material](https://material.io/) and [Firebase](https://firebase.google.com/). See also: [AngularMaterialGo](https://github.com/jeroenouw/AngularMaterialGo)
11+
A full stack starter app containing [Angular 8](https://angular.io), [Material](https://material.io/) and [Firebase](https://firebase.google.com/). See also: [AngularMaterialGo](https://github.com/jeroenouw/AngularMaterialGo)
1212

1313
## [Live demo](http://ngxmatfire.jerouw.nl)
1414

docs/FEATURES.md

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

33
## Features in this project
44

5-
* Angular 8 beta front-end
5+
* Angular 8 front-end
66
* Material Design
77
* Firebase back-end (OAuth authentication and NoSQL database)
88
* Automated documentation (compodoc)

package-lock.json

Lines changed: 9 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "ngxmatfire",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"author": "Jeroen Ouwehand",
5-
"description": "Full stack starter app with Angular 8 beta, Material Design and Firebase.",
5+
"description": "Full stack starter app with Angular 8, Material Design and Firebase.",
66
"keywords": [
77
"angular",
8-
"angular 7",
8+
"angular 8",
99
"firebase",
1010
"material",
1111
"nosql",
@@ -54,7 +54,8 @@
5454
"firebase": "^5.7.3",
5555
"hammerjs": "^2.0.8",
5656
"ngx-auth-firebaseui": "^2.2.1",
57-
"rxjs": "^6.4.0",
57+
"rxjs": "^6.5.0",
58+
"rxjs-compat": "^6.5.0",
5859
"ts-helpers": "*",
5960
"zone.js": "~0.9.1"
6061
},
@@ -80,7 +81,9 @@
8081
"ts-node": "^7.0.1",
8182
"tscov": "^1.3.3",
8283
"tslint": "^5.13.1",
83-
"typescript": "^3.4.5",
8484
"webpack": "^4.29.6"
85+
},
86+
"peerDependencies": {
87+
"typescript": "3.4.5"
8588
}
8689
}

src/app/components/blocks/first-block/first-block.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ import { Component } from '@angular/core';
77
})
88
export class FirstBlockComponent {
99
titleOne = 'Starter kit';
10-
contentOne = 'Angular 8 beta | Material Design | Firebase (OAuth authentication and NoSQL database)';
10+
contentOne = 'Angular 8 | Material Design | Firebase (OAuth authentication and NoSQL database)';
1111

1212
}

src/app/components/blocks/third-block/third-block.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Component } from '@angular/core';
66
styleUrls: ['./third-block.component.scss']
77
})
88
export class ThirdBlockComponent {
9-
titleThree = 'Angular 8 beta';
9+
titleThree = 'Angular 8';
1010
contentThree = 'Angular is a framework for building client applications in HTML and TypeScript that compiles to JavaScript.';
1111

1212
titleFour = 'Material 2';

src/app/components/misc/change/change-detection.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class ChangeDetectionComponent implements OnInit {
2828

2929
OnMutate() {
3030
console.log('OnMutate');
31-
this.change1.title = 'Learning Angular 8 beta';
31+
this.change1.title = 'Learning Angular 8';
3232
this.change1.author = 'Person A';
3333
}
3434

src/app/shared/pipes/currency-pipe.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Component } from '@angular/core';
66
<h3>Currency Pipe :</h3>
77
<div>
88
<p>Angular: {{angularPrice | currency:'EUR':false}}</p>
9-
<p>Angular 8 beta: {{angular7Price | currency:'EUR':true:'4.2-2'}}</p>
9+
<p>Angular 8: {{angular7Price | currency:'EUR':true:'4.2-2'}}</p>
1010
</div>
1111
</fieldset>`,
1212
styles: []

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>Angular 8 beta | Material Design | Firebase</title>
5+
<title>Angular 8 | Material Design | Firebase</title>
66
<base href="/">
77

88
<meta name="viewport" content="width=device-width, initial-scale=1">

0 commit comments

Comments
 (0)