Skip to content

Commit

Permalink
Merge pull request #772 from poloagustin/master
Browse files Browse the repository at this point in the history
Fixed #713 with OptionalDependencies approach
  • Loading branch information
Sashko Stubailo authored Oct 14, 2016
2 parents 42576cb + f243bc5 commit f84bbdb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ hammadj <[email protected]>
matt debergalis <[email protected]>
Vladimir Guguiev <[email protected]>
Edvin Eriksson <[email protected]>
Agustin Polo <[email protected]>
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Expect active development and potentially significant breaking changes in the `0
- **Feature removal**: No more `(read|diff)(Fragment|SelectionSet)FromStore`.
- **Feature removal**: No more `write(Fragment|SelectionSet)ToStore`.
- Fix: refetch only updates original query variable options
- Fix: Moved @types packages from devDependencies to dependencies as discussed in [Issue #713](https://github.com/apollostack/apollo-client/issues/713)

### v0.4.20
- Fix: Warn but do not fail when refetchQueries includes an unknown query name [PR #700](https://github.com/apollostack/apollo-client/pull/700)
Expand Down
24 changes: 13 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,6 @@
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"@types/async": "^2.0.31",
"@types/chai": "^3.4.32",
"@types/chai-as-promised": "0.0.28",
"@types/isomorphic-fetch": "0.0.30",
"@types/lodash": "^4.14.34",
"@types/mocha": "^2.2.31",
"@types/node": "^6.0.38",
"@types/promises-a-plus": "0.0.26",
"@types/redux": "^3.5.29",
"@types/sinon": "^1.16.29",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
Expand All @@ -97,5 +87,17 @@
"tslint": "3.15.1",
"typescript": "2.0.3",
"uglify-js": "^2.6.2"
},
"optionalDependencies": {
"@types/async": "^2.0.31",
"@types/chai": "^3.4.32",
"@types/chai-as-promised": "0.0.28",
"@types/isomorphic-fetch": "0.0.30",
"@types/lodash": "^4.14.34",
"@types/mocha": "^2.2.31",
"@types/node": "^6.0.38",
"@types/promises-a-plus": "0.0.26",
"@types/redux": "^3.5.29",
"@types/sinon": "^1.16.29"
}
}
}

0 comments on commit f84bbdb

Please sign in to comment.