forked from apollographql/apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bug/apollographqlGH-3030/no-cache-undefined
- Loading branch information
Showing
13 changed files
with
115 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "apollo-boost", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "The easiest way to get started with Apollo Client", | ||
"author": "Peggy Rayzis <[email protected]>", | ||
"contributors": [ | ||
|
@@ -28,15 +28,13 @@ | |
"watch": "tsc -w -p .", | ||
"clean": "rimraf coverage/* && rimraf lib/*", | ||
"prepublishOnly": "npm run build", | ||
"build:browser": | ||
"browserify ./lib/index.js --i apollo-utilities -o=./lib/bundle.js && npm run minify:browser", | ||
"minify:browser": | ||
"uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js", | ||
"build:browser": "browserify ./lib/index.js --i apollo-utilities -o=./lib/bundle.js && npm run minify:browser", | ||
"minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js", | ||
"filesize": "npm run build && npm run build:browser" | ||
}, | ||
"dependencies": { | ||
"apollo-cache-inmemory": "^1.1.9", | ||
"apollo-client": "^2.2.5", | ||
"apollo-cache-inmemory": "^1.1.10", | ||
"apollo-client": "^2.2.6", | ||
"apollo-link": "^1.0.6", | ||
"apollo-link-error": "^1.0.3", | ||
"apollo-link-http": "^1.3.1", | ||
|
@@ -46,7 +44,7 @@ | |
"devDependencies": { | ||
"@types/graphql": "0.12.4", | ||
"@types/jest": "21.1.10", | ||
"apollo-cache": "^1.1.4", | ||
"apollo-cache": "^1.1.5", | ||
"browserify": "15.2.0", | ||
"graphql": "0.13.1", | ||
"jest": "20.0.4", | ||
|
@@ -62,7 +60,12 @@ | |
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" | ||
}, | ||
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", | ||
"moduleFileExtensions": ["ts", "tsx", "js", "json"], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"json" | ||
], | ||
"mapCoverage": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "apollo-cache-inmemory", | ||
"version": "1.1.9", | ||
"version": "1.1.10", | ||
"description": "Core abstract of Caching layer for Apollo Client", | ||
"author": "James Baxley <[email protected]>", | ||
"contributors": [ | ||
|
@@ -33,16 +33,14 @@ | |
"watch": "tsc -w -p .", | ||
"clean": "rimraf coverage/* && rimraf lib/*", | ||
"prepublishOnly": "npm run build", | ||
"build:browser": | ||
"browserify ./lib/bundle.umd.js --i apollo-cache --i apollo-utilities --i graphql -o=./lib/bundle.js && npm run minify:browser", | ||
"minify:browser": | ||
"uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js", | ||
"build:browser": "browserify ./lib/bundle.umd.js --i apollo-cache --i apollo-utilities --i graphql -o=./lib/bundle.js && npm run minify:browser", | ||
"minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js", | ||
"filesize": "npm run build:browser" | ||
}, | ||
"dependencies": { | ||
"apollo-cache": "^1.1.4", | ||
"apollo-utilities": "^1.0.8", | ||
"graphql-anywhere": "^4.1.5" | ||
"apollo-cache": "^1.1.5", | ||
"apollo-utilities": "^1.0.9", | ||
"graphql-anywhere": "^4.1.6" | ||
}, | ||
"peerDependencies": { | ||
"graphql": "0.11.7 || ^0.12.0 || ^0.13.0" | ||
|
@@ -57,7 +55,7 @@ | |
"jest": "20.0.4", | ||
"lodash": "4.17.5", | ||
"rimraf": "2.6.2", | ||
"rollup": "0.56.0", | ||
"rollup": "0.56.4", | ||
"ts-jest": "20.0.14", | ||
"tslint": "5.9.1", | ||
"typescript": "2.5.2", | ||
|
@@ -68,7 +66,12 @@ | |
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" | ||
}, | ||
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", | ||
"moduleFileExtensions": ["ts", "tsx", "js", "json"], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"json" | ||
], | ||
"mapCoverage": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "apollo-cache", | ||
"version": "1.1.4", | ||
"version": "1.1.5", | ||
"description": "Core abstract of Caching layer for Apollo Client", | ||
"author": "James Baxley <[email protected]>", | ||
"contributors": [ | ||
|
@@ -25,23 +25,20 @@ | |
"scripts": { | ||
"coverage": "jest --coverage", | ||
"test": "jest", | ||
"lint": | ||
"tslint --type-check -p tsconfig.json src/*.ts && tslint --type-check -p tsconfig.json tests/*.ts", | ||
"lint": "tslint --type-check -p tsconfig.json src/*.ts && tslint --type-check -p tsconfig.json tests/*.ts", | ||
"prebuild": "npm run clean", | ||
"build": "tsc -p .", | ||
"postbuild": "npm run bundle", | ||
"bundle": "rollup -c rollup.config.js", | ||
"watch": "tsc -w -p .", | ||
"clean": "rimraf coverage/* && rimraf lib/*", | ||
"prepublishOnly": "npm run clean && npm run build", | ||
"build:browser": | ||
"browserify ./lib/bundle.umd.js --i apollo-utilities -o=./lib/bundle.js && npm run minify:browser", | ||
"minify:browser": | ||
"uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js", | ||
"build:browser": "browserify ./lib/bundle.umd.js --i apollo-utilities -o=./lib/bundle.js && npm run minify:browser", | ||
"minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js", | ||
"filesize": "npm run build && npm run build:browser" | ||
}, | ||
"dependencies": { | ||
"apollo-utilities": "^1.0.8" | ||
"apollo-utilities": "^1.0.9" | ||
}, | ||
"devDependencies": { | ||
"@types/graphql": "0.12.4", | ||
|
@@ -51,7 +48,7 @@ | |
"graphql-tag": "2.8.0", | ||
"jest": "20.0.4", | ||
"rimraf": "2.6.2", | ||
"rollup": "0.56.0", | ||
"rollup": "0.56.4", | ||
"rollup-plugin-node-resolve": "3.0.2", | ||
"ts-jest": "20.0.14", | ||
"tslint": "5.9.1", | ||
|
@@ -63,7 +60,12 @@ | |
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" | ||
}, | ||
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", | ||
"moduleFileExtensions": ["ts", "tsx", "js", "json"], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"json" | ||
], | ||
"mapCoverage": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.