Skip to content

Commit 30cce49

Browse files
author
James Salas
committed
fix: update and align package versions
1 parent d918e19 commit 30cce49

File tree

9 files changed

+198
-127
lines changed

9 files changed

+198
-127
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
dist
22
coverage
3+
angular.json

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,25 +49,25 @@
4949
"@types/jest": "23.1.6",
5050
"babel-core": "6.26.3",
5151
"babel-jest": "23.4.2",
52-
"codelyzer": "4.4.2",
52+
"codelyzer": "4.5.0",
5353
"husky": "1.1.3",
5454
"jest": "23.6.0",
5555
"jest-junit": "5.2.0",
5656
"jest-preset-angular": "6.0.2",
5757
"jest-zone-patch": "0.0.8",
5858
"lerna": "3.4.3",
5959
"lint-staged": "7.2.0",
60-
"ng-packagr": "3.0.6",
60+
"ng-packagr": "4.4.5",
6161
"npm-run-all": "4.1.3",
6262
"prettier": "1.13.7",
63-
"redux": "4.0.0",
63+
"redux": "4.0.1",
6464
"redux-logger": "2.10.2",
6565
"rimraf": "2.6.2",
6666
"rxjs": "6.3.3",
6767
"tsickle": "0.32.1",
6868
"tslib": "1.9.3",
6969
"tslint": "5.11.0",
70-
"typescript": "2.7.2",
70+
"typescript": "3.1.6",
7171
"zone.js": "0.8.26"
7272
}
7373
}

packages/example-app/src/app/component.spec.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import { async, TestBed } from '@angular/core/testing';
22
import { RouterTestingModule } from '@angular/router/testing';
33
import { AppComponent } from './component';
4-
import {
5-
platformBrowserDynamicTesting,
6-
BrowserDynamicTestingModule,
7-
} from '@angular/platform-browser-dynamic/testing';
84

95
describe('AppComponent', () => {
106
beforeEach(async(() => {

packages/example-app/src/app/feedback/page.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { TestBed } from '@angular/core/testing';
77
import { toArray } from 'rxjs/operators';
88
import { FeedbackFormComponent } from './page';
99

10-
1110
describe('Feedback Form Component', () => {
1211
beforeEach(() => {
1312
TestBed.configureTestingModule({

packages/example-app/src/app/store/module.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
MockNgRedux,
44
NgReduxTestingModule,
55
} from '@angular-redux/store/testing';
6-
import { async, getTestBed, TestBed } from '@angular/core/testing';
6+
import { async, TestBed } from '@angular/core/testing';
77
import { RootEpics } from './epics';
88
import { StoreModule } from './module';
99

@@ -15,18 +15,18 @@ describe('Store Module', () => {
1515
beforeEach(async(() => {
1616
TestBed.configureTestingModule({
1717
imports: [NgReduxTestingModule],
18-
})
19-
}));
18+
});
2019

21-
it('should configure the store when the module is loaded', async(() => {
2220
mockEpics = {
2321
createEpics() {
2422
return [];
2523
},
2624
};
2725
devTools = TestBed.get(DevToolsExtension);
2826
mockNgRedux = MockNgRedux.getInstance();
27+
}));
2928

29+
it('should configure the store when the module is loaded', async(() => {
3030
const configureSpy = spyOn(MockNgRedux.getInstance(), 'configureStore');
3131
const module = new StoreModule(
3232
mockNgRedux,

packages/form/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
},
2424
"peerDependencies": {
2525
"@angular-redux/store": "^9.0.0",
26-
"@angular/core": "^6.0.0",
27-
"@angular/forms": "^6.0.0",
26+
"@angular/core": "^7.0.0",
27+
"@angular/forms": "^7.0.0",
2828
"redux": "^4.0.0",
2929
"rxjs": "^6.0.0"
3030
},

packages/router/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
},
2525
"peerDependencies": {
2626
"@angular-redux/store": "^9.0.0",
27-
"@angular/common": "^6.0.0",
28-
"@angular/core": "^6.0.0",
29-
"@angular/router": "^6.0.0",
27+
"@angular/common": "^7.0.0",
28+
"@angular/core": "^7.0.0",
29+
"@angular/router": "^7.0.0",
3030
"redux": "^4.0.0",
3131
"rxjs": "^6.0.0"
3232
},

packages/store/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"doc": "typedoc --out docs --excludeExternals --excludePrivate --excludeNotExported -theme minimal --sourcefile-url-prefix \"https://github.com/angular-redux/store/blob/master/src/\" --name @angular-redux/store --mode file --module commonjs --tsconfig tsconfig.docs.json src"
2828
},
2929
"peerDependencies": {
30-
"@angular/core": "^6.0.0",
30+
"@angular/core": "^7.0.0",
3131
"redux": "^4.0.0",
3232
"rxjs": "^6.0.0"
3333
},

0 commit comments

Comments
 (0)