Skip to content

Commit

Permalink
Add setimmediate as a dependency (#47)
Browse files Browse the repository at this point in the history
* Add setimmediate as a dependency

* Update CHANGELOG.md
  • Loading branch information
manueliglesias authored Feb 16, 2018
1 parent 2f53c1e commit 6daa066
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/aws-appsync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### vNext
- Add setimmediate as a dependency [PR#47](https://github.com/awslabs/aws-mobile-appsync-sdk-js/pull/47)

### 1.0.10
- Update x-amz-user-agent header [PR#40](https://github.com/awslabs/aws-mobile-appsync-sdk-js/pull/40)

Expand Down
5 changes: 5 additions & 0 deletions packages/aws-appsync/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/aws-appsync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"paho-client": "^1.0.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"setimmediate": "^1.0.5",
"url": "^0.11.0"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/aws-appsync/src/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
import 'setimmediate';
import ApolloClient, { ApolloClientOptions, MutationOptions } from 'apollo-client';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { ApolloLink, FetchResult } from 'apollo-link';
Expand Down

0 comments on commit 6daa066

Please sign in to comment.