Skip to content

Commit d26b704

Browse files
committed
fix(package): updated the schematics libs version
1 parent 24da248 commit d26b704

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.yo-rc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"githubRepoName": "@angular-material-extensions/contacts",
88
"projectName": "@angular-material-extensions/contacts",
99
"projectVersion": "0.0.1",
10-
"projectDescription": "Angular Library to manage contacts and users with a material deisgn",
10+
"projectDescription": "Angular Library to manage contacts and users with a material design",
1111
"projectKeywords": [
1212
"angular",
1313
" library",

demo/src/app/home/home.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77
<div class="col-sm-8 text-center text-md-left">
88
<h1>@angular-material-extensions/contacts</h1>
9-
<p>Angular Library to manage contacts and users with a material deisgn</p>
9+
<p>Angular Library to manage contacts and users with a material design</p>
1010
<p>Scroll down to see it in action!</p>
1111
<p class="buttons">
1212
<a class="btn btn-outline-primary btn-lg" href="https://github.com/angular-material-extensions/contacts"

demo/src/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
@angular-material-extensions/contacts
88
</title>
99
<base href=".">
10-
<meta name="description" content="Angular Library to manage contacts and users with a material deisgn"/>
10+
<meta name="description" content="Angular Library to manage contacts and users with a material design"/>
1111

1212
<!-- Twitter Card data -->
1313
<meta name="twitter:card" content="summary">
1414
<meta name="twitter:site" content="@anthonynahas">
1515
<meta name="twitter:title" content="@angular-material-extensions/contacts">
1616
<!-- Page description less than 200 characters -->
17-
<meta name="twitter:description" content="Angular Library to manage contacts and users with a material deisgn">
17+
<meta name="twitter:description" content="Angular Library to manage contacts and users with a material design">
1818
<meta name="twitter:creator" content="@anthonynahas">
1919
<!-- Twitter Summary card images must be at least 120x120px -->
2020
<meta name="twitter:image" content="https://anthonynahas.github.io/@angular-material-extensions/contacts/assets/logo.svg">
@@ -24,7 +24,7 @@
2424
<meta property="og:type" content="article"/>
2525
<meta property="og:url" content="https://anthonynahas.github.io/@angular-material-extensions/contacts"/>
2626
<meta property="og:image" content="https://anthonynahas.github.io/@angular-material-extensions/contacts/assets/logo.svg"/>
27-
<meta property="og:description" content="Angular Library to manage contacts and users with a material deisgn"/>
27+
<meta property="og:description" content="Angular Library to manage contacts and users with a material design"/>
2828
<meta property="og:site_name" content="@angular-material-extensions/contacts"/>
2929

3030
<meta charset="utf-8">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-material-extensions/contacts",
3-
"description": "Angular Library to manage contacts and users with a material deisgn",
3+
"description": "Angular Library to manage contacts and users with a material design",
44
"version": "3.1.1",
55
"homepage": "https://github.com/angular-material-extensions/contacts",
66
"author": {

src/schematics/src/ng-add/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ export function addPackageJsonDependencies(): Rule {
3030
const dependencies: NodeDependency[] = [
3131
{
3232
type: NodeDependencyType.Default,
33-
version: loadPackageVersionGracefully(context) || '3.2.0',
33+
version: loadPackageVersionGracefully(context) || 'latest',
3434
name: '@angular-material-extensions/contacts'
3535
},
36-
{type: NodeDependencyType.Default, version: ngCoreVersionTag || '7.2.9', name: '@angular/animations'},
37-
{type: NodeDependencyType.Default, version: ngCoreVersionTag || '7.2.9', name: '@angular/forms'},
38-
{type: NodeDependencyType.Default, version: '7.0.0-beta.23', name: '@angular/flex-layout'},
36+
{type: NodeDependencyType.Default, version: ngCoreVersionTag || '7.2.10', name: '@angular/animations'},
37+
{type: NodeDependencyType.Default, version: ngCoreVersionTag || '7.2.10', name: '@angular/forms'},
38+
{type: NodeDependencyType.Default, version: '7.0.0-beta.24', name: '@angular/flex-layout'},
3939
{type: NodeDependencyType.Default, version: '^2.3.1', name: 'ng2-avatar'},
4040
];
4141

0 commit comments

Comments
 (0)