diff --git a/AUTHORS b/AUTHORS index 88db1fd1c4e..2b68afe965a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -42,3 +42,4 @@ hammadj matt debergalis Vladimir Guguiev Edvin Eriksson +Agustin Polo diff --git a/CHANGELOG.md b/CHANGELOG.md index 15b00707b27..29986712f0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index b3f608cb9e1..02fc844bc66 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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" } -} +} \ No newline at end of file