This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 786
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix typescript usage * updated changelog * add issue information to changelog * Version bump * update dangerfile
- Loading branch information
James Baxley
authored
Jul 18, 2017
1 parent
4b048f5
commit 8ee56e9
Showing
9 changed files
with
283 additions
and
198 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-apollo", | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"description": "React data container for Apollo Client", | ||
"main": "lib/react-apollo.umd.js", | ||
"module": "./lib/index.js", | ||
|
@@ -15,7 +15,7 @@ | |
"test-watch": "jest --watch", | ||
"posttest": "npm run lint", | ||
"filesize": "npm run compile:browser && bundlesize", | ||
"flow-check": "flow check", | ||
"type-check": "tsc ./test/typescript.ts --noEmit --jsx react --noEmitOnError --lib es6,dom --experimentalDecorators && flow check", | ||
"compile": "tsc", | ||
"bundle": "rollup -c && rollup -c rollup.browser.config.js && rollup -c rollup.test-utils.config.js && cp ./index.js.flow ./lib", | ||
"compile:browser": "rm -rf ./dist && mkdir ./dist && browserify ./lib/react-apollo.browser.umd.js --i graphql-tag --i react --i apollo-client -o=./dist/index.js && npm run minify:browser && npm run compress:browser", | ||
|
@@ -52,7 +52,7 @@ | |
"npm", | ||
"react" | ||
], | ||
"author": "James Baxley <james[email protected]>", | ||
"author": "James Baxley <james@meteor.com>", | ||
"babel": { | ||
"presets": [ | ||
"react-native" | ||
|
@@ -72,7 +72,8 @@ | |
], | ||
"modulePathIgnorePatterns": [ | ||
"<rootDir>/examples", | ||
"<rootDir>/test/flow.js" | ||
"<rootDir>/test/flow.js", | ||
"<rootDir>/test/typescript.ts" | ||
], | ||
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$", | ||
"collectCoverage": 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
Oops, something went wrong.