Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 1bccf71

Browse files
crisbetojelbourn
authored andcommitted
feat: angular 4 compatibility (#135)
* Updates all Angular dependencies to the latest RC. * Fixes any errors/warnings caused by the upgrade. * Fixes error when running the unit tests. * Bumps the year in the license.
1 parent fd8d1ea commit 1bccf71

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2016 Google, Inc.
3+
Copyright (c) 2017 Google, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "angular-io-v42",
2+
"name": "material-angular-io",
33
"version": "0.0.0",
44
"license": "MIT",
55
"angular-cli": {},
@@ -28,7 +28,7 @@
2828
"@angular/router": "~4.0.0",
2929
"core-js": "^2.4.1",
3030
"rxjs": "^5.1.0",
31-
"zone.js": "^0.7.7"
31+
"zone.js": "^0.8.4"
3232
},
3333
"devDependencies": {
3434
"@angular/cli": "^1.0.0",

src/app/shared/footer/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414

1515
<div class="docs-footer-copyright">
16-
<p>Powered by Google ©2010-2016. Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.</p>
16+
<p>Powered by Google ©2010-2017. Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.</p>
1717
</div>
1818
</div>
1919
</footer>

src/app/shared/plunker/plunker-writer.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ describe('PlunkerWriter', () => {
4545
it('should append correct copyright', () => {
4646
expect(plunkerWriter._appendCopyright('test.ts', 'NoContent')).toBe(`NoContent
4747
48-
/** Copyright 2016 Google Inc. All Rights Reserved.
48+
/** Copyright 2017 Google Inc. All Rights Reserved.
4949
Use of this source code is governed by an MIT-style license that
5050
can be found in the LICENSE file at http://angular.io/license */`);
5151

5252
expect(plunkerWriter._appendCopyright('test.html', 'NoContent')).toBe(`NoContent
5353
54-
<!-- Copyright 2016 Google Inc. All Rights Reserved.
54+
<!-- Copyright 2017 Google Inc. All Rights Reserved.
5555
Use of this source code is governed by an MIT-style license that
5656
can be found in the LICENSE file at http://angular.io/license -->`);
5757

src/app/shared/plunker/plunker-writer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'rxjs/add/operator/toPromise';
66
const PLUNKER_URL = 'https://plnkr.co/edit/?p=preview';
77

88
const COPYRIGHT =
9-
`Copyright 2016 Google Inc. All Rights Reserved.
9+
`Copyright 2017 Google Inc. All Rights Reserved.
1010
Use of this source code is governed by an MIT-style license that
1111
can be found in the LICENSE file at http://angular.io/license`;
1212

0 commit comments

Comments
 (0)