├── .flowconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── dist ├── getFileFilter.js ├── getSchema.js ├── getWriter.js └── index.js ├── package.json ├── src ├── getFileFilter.js ├── getSchema.js ├── getWriter.js └── index.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /dist/getFileFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/dist/getFileFilter.js -------------------------------------------------------------------------------- /dist/getSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/dist/getSchema.js -------------------------------------------------------------------------------- /dist/getWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/dist/getWriter.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/getFileFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/src/getFileFilter.js -------------------------------------------------------------------------------- /src/getSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/src/getSchema.js -------------------------------------------------------------------------------- /src/getWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/src/getWriter.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mainframe-Archive/relay-compiler-webpack-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------