Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
1.4.11 (#969)
Browse files Browse the repository at this point in the history
* 1.4.11

* version bump
  • Loading branch information
James Baxley authored Aug 10, 2017
1 parent 13e2814 commit 32b94cb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change log

### vNext

### 1.4.11
- Replace string refs with callback refs [#908](https://github.com/apollographql/react-apollo/pull/908)

### 1.4.10
Expand Down
23 changes: 18 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-apollo",
"version": "1.4.10",
"version": "1.4.11",
"description": "React data container for Apollo Client",
"main": "lib/react-apollo.umd.js",
"module": "./lib/index.js",
Expand Down Expand Up @@ -39,7 +39,10 @@
"prettier --trailing-comma all --single-quote --write",
"git add"
],
"*.js*": ["prettier --trailing-comma all --single-quote --write", "git add"]
"*.js*": [
"prettier --trailing-comma all --single-quote --write",
"git add"
]
},
"pre-commit": "lint-staged",
"repository": {
Expand All @@ -57,21 +60,31 @@
],
"author": "James Baxley <james@meteor.com>",
"babel": {
"presets": ["react-native"]
"presets": [
"react-native"
]
},
"jest": {
"preset": "jest-react-native",
"testEnvironment": "jsdom",
"transform": {
".*": "./preprocessor.js"
},
"moduleFileExtensions": ["ts", "tsx", "js", "json"],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/examples",
"<rootDir>/test/flow.js",
"<rootDir>/test/typescript.ts"
],
"projects": ["<rootDir>", "<rootDir>/examples/*"],
"projects": [
"<rootDir>",
"<rootDir>/examples/*"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"license": "MIT",
Expand Down

1 comment on commit 32b94cb

@dozoisch
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks 🎉

Please sign in to comment.