Skip to content

Commit 32b94cb

Browse files
author
James Baxley
authored
* 1.4.11 * version bump
1 parent 13e2814 commit 32b94cb

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Change log
22

33
### vNext
4+
5+
### 1.4.11
46
- Replace string refs with callback refs [#908](https://github.com/apollographql/react-apollo/pull/908)
57

68
### 1.4.10

package.json

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-apollo",
3-
"version": "1.4.10",
3+
"version": "1.4.11",
44
"description": "React data container for Apollo Client",
55
"main": "lib/react-apollo.umd.js",
66
"module": "./lib/index.js",
@@ -39,7 +39,10 @@
3939
"prettier --trailing-comma all --single-quote --write",
4040
"git add"
4141
],
42-
"*.js*": ["prettier --trailing-comma all --single-quote --write", "git add"]
42+
"*.js*": [
43+
"prettier --trailing-comma all --single-quote --write",
44+
"git add"
45+
]
4346
},
4447
"pre-commit": "lint-staged",
4548
"repository": {
@@ -57,21 +60,31 @@
5760
],
5861
"author": "James Baxley <james@meteor.com>",
5962
"babel": {
60-
"presets": ["react-native"]
63+
"presets": [
64+
"react-native"
65+
]
6166
},
6267
"jest": {
6368
"preset": "jest-react-native",
6469
"testEnvironment": "jsdom",
6570
"transform": {
6671
".*": "./preprocessor.js"
6772
},
68-
"moduleFileExtensions": ["ts", "tsx", "js", "json"],
73+
"moduleFileExtensions": [
74+
"ts",
75+
"tsx",
76+
"js",
77+
"json"
78+
],
6979
"modulePathIgnorePatterns": [
7080
"<rootDir>/examples",
7181
"<rootDir>/test/flow.js",
7282
"<rootDir>/test/typescript.ts"
7383
],
74-
"projects": ["<rootDir>", "<rootDir>/examples/*"],
84+
"projects": [
85+
"<rootDir>",
86+
"<rootDir>/examples/*"
87+
],
7588
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$"
7689
},
7790
"license": "MIT",

0 commit comments

Comments
 (0)