Skip to content

Commit 2b91a2a

Browse files
crisbetodevversion
authored andcommitted
chore: bump to rc.5 and fix new test failures
1 parent 9c639d3 commit 2b91a2a

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@
2525
"node": ">= 5.4.1 < 7"
2626
},
2727
"dependencies": {
28-
"@angular/animations": "^4.0.0-rc.3",
29-
"@angular/common": "^4.0.0-rc.3",
30-
"@angular/compiler": "^4.0.0-rc.3",
31-
"@angular/core": "^4.0.0-rc.3",
32-
"@angular/forms": "^4.0.0-rc.3",
33-
"@angular/http": "^4.0.0-rc.3",
34-
"@angular/platform-browser": "^4.0.0-rc.3",
28+
"@angular/animations": "^4.0.0-rc.5",
29+
"@angular/common": "^4.0.0-rc.5",
30+
"@angular/compiler": "^4.0.0-rc.5",
31+
"@angular/core": "^4.0.0-rc.5",
32+
"@angular/forms": "^4.0.0-rc.5",
33+
"@angular/http": "^4.0.0-rc.5",
34+
"@angular/platform-browser": "^4.0.0-rc.5",
3535
"core-js": "^2.4.1",
3636
"rxjs": "^5.0.1",
3737
"systemjs": "0.19.43",
3838
"zone.js": "^0.7.2"
3939
},
4040
"devDependencies": {
41-
"@angular/compiler-cli": "^4.0.0-rc.3",
42-
"@angular/platform-browser-dynamic": "^4.0.0-rc.3",
43-
"@angular/platform-server": "^4.0.0-rc.3",
44-
"@angular/router": "^4.0.0-rc.3",
41+
"@angular/compiler-cli": "^4.0.0-rc.5",
42+
"@angular/platform-browser-dynamic": "^4.0.0-rc.5",
43+
"@angular/platform-server": "^4.0.0-rc.5",
44+
"@angular/router": "^4.0.0-rc.5",
4545
"@types/chalk": "^0.4.31",
4646
"@types/fs-extra": "0.0.37",
4747
"@types/glob": "^5.0.30",

src/demo-app/system-config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ System.config({
1515
'@angular/forms': 'vendor/@angular/forms/bundles/forms.umd.js',
1616
'@angular/router': 'vendor/@angular/router/bundles/router.umd.js',
1717
'@angular/animations': 'vendor/@angular/animations/bundles/animations.umd.js',
18+
'@angular/animations/browser': 'vendor/@angular/animations/bundles/animations-browser.umd.js',
1819
'@angular/platform-browser': 'vendor/@angular/platform-browser/bundles/platform-browser.umd.js',
1920
'@angular/platform-browser/animations':
2021
'vendor/@angular/platform-browser/bundles/platform-browser-animations.umd',

src/e2e-app/system-config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ System.config({
1515
'@angular/forms': 'vendor/@angular/forms/bundles/forms.umd.js',
1616
'@angular/router': 'vendor/@angular/router/bundles/router.umd.js',
1717
'@angular/animations': 'vendor/@angular/animations/bundles/animations.umd.js',
18+
'@angular/animations/browser': 'vendor/@angular/animations/bundles/animations-browser.umd.js',
1819
'@angular/platform-browser/animations':
1920
'vendor/@angular/platform-browser/bundles/platform-browser-animations.umd',
2021
'@angular/platform-browser': 'vendor/@angular/platform-browser/bundles/platform-browser.umd.js',

src/lib/system-config-spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ System.config({
1919
'@angular/forms': 'vendor/@angular/forms/bundles/forms.umd.js',
2020
'@angular/forms/testing': 'vendor/@angular/forms/bundles/forms-testing.umd.js',
2121
'@angular/animations': 'vendor/@angular/animations/bundles/animations.umd.js',
22+
'@angular/animations/browser': 'vendor/@angular/animations/bundles/animations-browser.umd.js',
2223
'@angular/platform-browser/animations':
2324
'vendor/@angular/platform-browser/bundles/platform-browser-animations.umd',
2425
'@angular/platform-browser': 'vendor/@angular/platform-browser/bundles/platform-browser.umd.js',

src/lib/tabs/tab-group.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {
33
} from '@angular/core/testing';
44
import {MdTabGroup, MdTabsModule, MdTabHeaderPosition} from './index';
55
import {Component, ViewChild} from '@angular/core';
6+
import {NoopAnimationsModule} from '@angular/platform-browser/animations';
67
import {By} from '@angular/platform-browser';
78
import {Observable} from 'rxjs/Observable';
89
import {MdTab} from './tab';
@@ -13,7 +14,7 @@ import {FakeViewportRuler} from '../core/overlay/position/fake-viewport-ruler';
1314
describe('MdTabGroup', () => {
1415
beforeEach(async(() => {
1516
TestBed.configureTestingModule({
16-
imports: [MdTabsModule.forRoot()],
17+
imports: [MdTabsModule.forRoot(), NoopAnimationsModule],
1718
declarations: [
1819
SimpleTabsTestApp,
1920
SimpleDynamicTabsTestApp,

0 commit comments

Comments
 (0)