Skip to content

Commit

Permalink
Update to latest angular2 version, fix #17
Browse files Browse the repository at this point in the history
  • Loading branch information
wbuchwalter committed Dec 3, 2015
1 parent 3868f5c commit 0cd5327
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/counter/containers/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {Component, View, onDestroy} from 'angular2/angular2';
import {bindActionCreators} from 'redux';
import {Counter} from '../components/Counter';
import * as CounterActions from '../actions/CounterActions';
import { Inject } from 'angular2/di';
import { Inject } from 'angular2/angular2';

@Component({
selector: 'root',
Expand Down
2 changes: 1 addition & 1 deletion examples/counter/devTools.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DevTools, DebugPanel, LogMonitor } from 'redux-devtools/lib/react';
import React, { Component } from 'react';
import {bind} from 'angular2/di';
import {bind} from 'angular2/angular2';

let devTools = bind('devTools').toFactory(() => {
return {
Expand Down
4 changes: 2 additions & 2 deletions examples/counter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
},
"homepage": "https://github.com/wbuchwalter/ng2-redux#readme",
"dependencies": {
"angular2": "2.0.0-alpha.37",
"ng2-redux": "2.0.0-alpha.3",
"angular2": "^2.0.0-alpha.47",
"ng2-redux": "^2.0.0",
"react": "^0.13.3",
"redux": "^3.0.0",
"redux-devtools": "^2.1.0",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng2-redux",
"version": "2.0.0-alpha.3",
"version": "2.0.0",
"description": "Angular 2 bindings for Redux",
"main": "./lib/index.js",
"scripts": {
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0",
"angular2": "^2.0.0-alpha.30"
"angular2": "^2.0.0-alpha.47"
},
"dependencies": {
"invariant": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/provider.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Connector from './connector';
import {bind, Injector} from 'angular2/di';
import {bind, Injector} from 'angular2/angular2';
let redux = require('redux');

export function provider(store) {
Expand Down

0 comments on commit 0cd5327

Please sign in to comment.