Skip to content

Commit 10dce6f

Browse files
SethDavenportsmithad15
authored andcommitted
Update to RC6 (#214)
Also removed a couple of pointless peer deps: Angular itself already declares RxJS and Zone as peers.
1 parent de867e7 commit 10dce6f

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

packages/store/examples/counter/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const createLogger = require('redux-logger');
1212
1313
<h3>String length example</h3>
1414
<search></search>
15-
<search-info></search-info>
1615
`
1716
})
1817
export class App {

packages/store/examples/counter/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { BrowserModule } from '@angular/platform-browser';
44
import { NgReduxModule } from 'ng2-redux';
55
import { CounterActions } from '../actions/counter.actions';
66
import { SearchActions } from '../actions/search.actions';
7-
import { App } from './app.component.ts';
7+
import { App } from './app.component';
88
import { CounterInfo } from '../components/counter-info.component';
99
import { Counter } from '../components/counter.component';
1010
import { Search } from '../components/search.component';

packages/store/examples/counter/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@
2323
},
2424
"homepage": "https://github.com/wbuchwalter/ng2-redux#readme",
2525
"dependencies": {
26-
"@angular/common": "2.0.0-rc.5",
27-
"@angular/compiler": "2.0.0-rc.5",
28-
"@angular/core": "2.0.0-rc.5",
29-
"@angular/http": "2.0.0-rc.5",
30-
"@angular/platform-browser": "2.0.0-rc.5",
31-
"@angular/platform-browser-dynamic": "2.0.0-rc.5",
26+
"@angular/common": "2.0.0-rc.6",
27+
"@angular/compiler": "2.0.0-rc.6",
28+
"@angular/core": "2.0.0-rc.6",
29+
"@angular/http": "2.0.0-rc.6",
30+
"@angular/platform-browser": "2.0.0-rc.6",
31+
"@angular/platform-browser-dynamic": "2.0.0-rc.6",
3232
"core-js": "^2.3.0",
33-
"ng2-redux": "^3.3.3",
33+
"ng2-redux": "^3.3.9",
3434
"redux": "^3.5.0",
3535
"redux-logger": "^2.6.1",
3636
"redux-localstorage": "^0.4.0",
3737
"reflect-metadata": "0.1.3",
38-
"rxjs": "5.0.0-beta.6",
38+
"rxjs": "5.0.0-beta.11",
3939
"zone.js": "^0.6.15"
4040
},
4141
"devDependencies": {
42-
"@types/es6-shim": "0.0.30",
42+
"@types/core-js": "^0.9.32",
4343
"@types/node": "^6.0.36",
4444
"awesome-typescript-loader": "^2.2.1",
4545
"cross-env": "^1.0.7",

packages/store/examples/counter/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
"experimentalDecorators": true,
1010
"noImplicitAny": false,
1111
"removeComments": false,
12-
"sourceMap": true
12+
"sourceMap": true,
13+
"types": [
14+
"core-js", "node"
15+
]
1316
},
1417
"exclude": [
1518
"node_modules"

packages/store/package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"homepage": "https://github.com/angular-redux/ng2-redux#readme",
4949
"devDependencies": {
50-
"@angular/core": "2.0.0-rc.5",
50+
"@angular/core": "2.0.0-rc.6",
5151
"@types/chai": "^3.4.31",
5252
"@types/es6-shim": "0.0.30",
5353
"@types/mocha": "^2.2.30",
@@ -63,7 +63,7 @@
6363
"redux": "^3.4.0",
6464
"reflect-metadata": "0.1.3",
6565
"rimraf": "^2.5.2",
66-
"rxjs": "5.0.0-beta.6",
66+
"rxjs": "5.0.0-beta.11",
6767
"sinon": "^1.16.1",
6868
"sinon-chai": "^2.8.0",
6969
"symbol-observable": "^1.0.1",
@@ -73,10 +73,8 @@
7373
"zone.js": "^0.6.15"
7474
},
7575
"peerDependencies": {
76-
"@angular/core": "2.0.0-rc.3 || ^2.0.0-rc.4 || ^2.0.0-rc.5",
77-
"redux": "^3.5.0",
78-
"rxjs": "5.0.0-beta.6",
79-
"zone.js": "^0.6.15"
76+
"@angular/core": "2.0.0-rc.3 || ^2.0.0-rc.4 || ^2.0.0-rc.5 || ^2.0.0-rc.6",
77+
"redux": "^3.5.0"
8078
},
8179
"nyc": {
8280
"exclude": [

0 commit comments

Comments
 (0)