-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build scripts for recoil-relay (#1799)
Summary: Pull Request resolved: #1799 Update package build scripts for `recoil-relay` Reviewed By: mondaychen Differential Revision: D36429965 fbshipit-source-id: 60f984dcc987ae3468a24a563be225bbdcc644b2
- Loading branch information
1 parent
530ef77
commit 4c31068
Showing
18 changed files
with
802 additions
and
797 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "recoil-relay", | ||
"version": "0.1.0", | ||
"description": "recoil-relay helps Recoil perform type safe and efficient queries using GraphQL with Relay", | ||
"main": "cjs/index.js", | ||
"module": "es/index.js", | ||
"unpkg": "umd/index.js", | ||
"types": "index.d.ts", | ||
"files": ["umd", "es", "cjs", "index.d.ts"], | ||
"repository": "https://github.com/facebookexperimental/Recoil.git", | ||
"license": "MIT", | ||
"dependencies": {}, | ||
"peerDependencies": { | ||
"recoil": ">=0.7.3", | ||
"react-relay": ">=13.2.0", | ||
"relay-runtime": ">=13.2.0" | ||
} | ||
} |
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 @@ | ||
module.exports = { | ||
// Configuration options accepted by the `relay-compiler` command-line tool and `babel-plugin-relay`. | ||
src: "./packages/recoil-relay/__tests__", | ||
schema: "./packages/recoil-relay/__tests__/mock-graphql/schema.graphql", | ||
exclude: ["**/node_modules/**", "**/__mocks__/**", "**/__generated__/**"], | ||
src: './packages/recoil-relay/__tests__', | ||
schema: './packages/recoil-relay/__tests__/mock-graphql/schema.graphql', | ||
exclude: ['**/node_modules/**', '**/__mocks__/**', '**/__generated__/**'], | ||
} |
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.