Skip to content

Commit

Permalink
chore(deps): Update to Angular 2 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleš authored and MikeRyanDev committed May 3, 2016
1 parent c0a383c commit 7798b9c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Extending from our `authEffect` example written in the _Getting Started_ guide,
_Note: for this example I am using respond-ng, a simple Http mocking library I wrote to make unit testing Http calls easier_

```ts
import {Injector} from 'angular2/core';
import {Injector} from '@angular/core';
import RESPOND_PROVIDERS, {Respond} from 'respond-ng';
import {SagaTester} from 'store-saga/testing';

Expand Down
2 changes: 1 addition & 1 deletion lib/middleware.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'rxjs/add/operator/withLatestFrom';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/do';
import { Provider } from 'angular2/core';
import { Provider } from '@angular/core';
import { createMiddleware, Dispatcher } from '@ngrx/store';

import { SagaRunner } from './runner';
Expand Down
2 changes: 1 addition & 1 deletion lib/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
ReflectiveInjector,
SkipSelf,
Optional
} from 'angular2/core';
} from '@angular/core';
import { Action, Dispatcher } from '@ngrx/store';

import { async } from 'rxjs/scheduler/async';
Expand Down
2 changes: 1 addition & 1 deletion lib/scheduler.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {provide, Provider, OpaqueToken} from 'angular2/core';
import {provide, Provider, OpaqueToken} from '@angular/core';
import { async } from 'rxjs/scheduler/async';

export const SagaScheduler = new OpaqueToken('@ngrx/store/sagas Scheduler');
Expand Down
2 changes: 1 addition & 1 deletion lib/testing.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Observable } from 'rxjs/Observable';
import { Subscription } from 'rxjs/Subscription';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import { Injectable, Injector, Inject, ReflectiveInjector } from 'angular2/core';
import { Injectable, Injector, Inject, ReflectiveInjector } from '@angular/core';

import { Saga } from './interfaces';
import { SagaRunner } from './runner';
Expand Down
2 changes: 1 addition & 1 deletion lib/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'rxjs/add/operator/map';
import 'rxjs/add/observable/of';
import { async } from 'rxjs/scheduler/async';

import { Provider, provide, OpaqueToken, Injector } from 'angular2/core';
import { Provider, provide, OpaqueToken, Injector } from '@angular/core';
import { POST_MIDDLEWARE, Dispatcher, Action, usePostMiddleware } from '@ngrx/store';
import { Observable } from 'rxjs/Observable';

Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,20 @@
"homepage": "https://github.com/MikeRyan52/store-saga#readme",
"peerDependencies": {
"rxjs": "^5.0.0-beta.6",
"angular2": "^2.0.0-beta.17",
"@ngrx/store": "^1.4.0"
"@angular/core": "^2.0.0-rc.0",
"zone.js": "^0.6.6",
"@ngrx/store": "^1.5.0"
},
"devDependencies": {
"@ngrx/store": "^1.4.0",
"angular2": "^2.0.0-beta.17",
"@ngrx/store": "^1.5.0",
"@angular/core": "^2.0.0-rc.0",
"core-js": "^2.1.3",
"istanbul": "^0.4.2",
"jasmine": "^2.4.1",
"reflect-metadata": "^0.1.2",
"rxjs": "^5.0.0-beta.6",
"ts-node": "^0.5.5",
"typescript": "^1.8.9",
"typescript": "^1.8.10",
"typings": "^0.7.9"
}
}
2 changes: 1 addition & 1 deletion spec/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import './test_harness';
import {ReflectiveInjector, Provider} from 'angular2/core';
import {ReflectiveInjector, Provider} from '@angular/core';
import {Observable} from 'rxjs/Observable';
import {provideStore, Store, Action, Dispatcher, usePostMiddleware} from '@ngrx/store';
import {Saga, SagaRunner, schedulerProvider, SagaScheduler, createSaga, whenAction, installSagaMiddleware} from '../lib';
Expand Down

0 comments on commit 7798b9c

Please sign in to comment.