Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: update more package versions
  • Loading branch information
James Salas committed Jan 16, 2019
commit f89bfa676fe0c579a2f0eae76386311ee30dcfe0
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages": ["packages/*"],
"version": "9.0.0",
"version": "10.0.0",
"npmClient": "yarn",
"useWorkspaces": true,
"ignore": "example-app",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@types/jest": "23.1.6",
"babel-core": "6.26.3",
"babel-jest": "23.4.2",
"codelyzer": "4.4.2",
"codelyzer": "4.5.0",
"husky": "1.1.3",
"jest": "23.4.1",
"jest-junit": "5.1.0",
Expand All @@ -68,10 +68,10 @@
"redux-logger": "2.10.2",
"rimraf": "2.6.2",
"rxjs": "6.2.1",
"tsickle": "0.32.1",
"tsickle": "0.34.0",
"tslib": "1.9.3",
"tslint": "5.11.0",
"typescript": "2.7.2",
"typescript": "3.2.2",
"zone.js": "0.8.26"
}
}
6 changes: 3 additions & 3 deletions packages/example-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"node": ">=8"
},
"dependencies": {
"@angular-redux/form": "latest",
"@angular-redux/router": "latest",
"@angular-redux/store": "latest",
"@angular-redux/form": "10.0.0",
"@angular-redux/router": "10.0.0",
"@angular-redux/store": "10.0.0",
"@angular/common": "^7.2.0",
"@angular/compiler": "^7.2.0",
"@angular/core": "^7.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"immutable": "3.8.2"
},
"devDependencies": {
"@angular-redux/store": "latest"
"@angular-redux/store": "10.0.0"
},
"main": "dist/bundles/angular-redux-form.umd.js",
"module": "dist/fesm5/angular-redux-form.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/form/src/tests.utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const logger = createLogger({
collapsed: true,
predicate: (getState, action) => true,
stateTransformer: state => {
const newState = new Object();
const newState: any = new Object();

for (const i of Object.keys(state)) {
newState[i] = Iterable.isIterable(state[i]) ? state[i].toJS() : state[i];
Expand Down
2 changes: 2 additions & 0 deletions packages/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 10.0.0 Angular 7 Support

# 9.0.0 - Angular 6, RxJS 6 Support

Adapts to breaking changes in Angular 6 and RxJS 6. Also updates to Typescript 2.7.2.
Expand Down
4 changes: 4 additions & 0 deletions packages/store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 10.0.0

- Supports Angular 7

# 9.0.0

## Breaking Changes
Expand Down
Loading