├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── lib │ └── FormatErrorWithContextExtension.js └── main.js └── test └── lib └── FormatErrorWithContextExtension.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE 2 | .idea 3 | 4 | # Project 5 | node_modules/ 6 | dist/ 7 | package-lock.json 8 | coverage 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/lib/FormatErrorWithContextExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/src/lib/FormatErrorWithContextExtension.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/src/main.js -------------------------------------------------------------------------------- /test/lib/FormatErrorWithContextExtension.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccpend/graphql-format-error-context-extension/HEAD/test/lib/FormatErrorWithContextExtension.test.js --------------------------------------------------------------------------------