Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #713 with OptionalDependencies approach #772

Merged
merged 1 commit into from
Oct 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
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
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"
}
}
}