├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── funding.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── changelog.md ├── cjsDefaultImport.mjs ├── cjsDefaultImport.test.mjs ├── jsconfig.json ├── license.md ├── package.json ├── readme.md ├── test ├── execFilePromise.mjs ├── fixtures │ └── next-project │ │ ├── next.config.mjs │ │ ├── pages │ │ ├── _app.mjs │ │ ├── index.mjs │ │ └── second.mjs │ │ └── polyfills.js ├── listen.mjs └── startNext.mjs ├── withGraphQLReact.mjs └── withGraphQLReact.test.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/fixtures/next-project/out 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: jaydenseric 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .next 4 | test/fixtures/next-project/out 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | .next 3 | test/fixtures/next-project/out 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "proseWrap": "never" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/changelog.md -------------------------------------------------------------------------------- /cjsDefaultImport.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/cjsDefaultImport.mjs -------------------------------------------------------------------------------- /cjsDefaultImport.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/cjsDefaultImport.test.mjs -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/jsconfig.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/readme.md -------------------------------------------------------------------------------- /test/execFilePromise.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/execFilePromise.mjs -------------------------------------------------------------------------------- /test/fixtures/next-project/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/fixtures/next-project/next.config.mjs -------------------------------------------------------------------------------- /test/fixtures/next-project/pages/_app.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/fixtures/next-project/pages/_app.mjs -------------------------------------------------------------------------------- /test/fixtures/next-project/pages/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/fixtures/next-project/pages/index.mjs -------------------------------------------------------------------------------- /test/fixtures/next-project/pages/second.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/fixtures/next-project/pages/second.mjs -------------------------------------------------------------------------------- /test/fixtures/next-project/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/fixtures/next-project/polyfills.js -------------------------------------------------------------------------------- /test/listen.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/listen.mjs -------------------------------------------------------------------------------- /test/startNext.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/test/startNext.mjs -------------------------------------------------------------------------------- /withGraphQLReact.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/withGraphQLReact.mjs -------------------------------------------------------------------------------- /withGraphQLReact.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/next-graphql-react/HEAD/withGraphQLReact.test.mjs --------------------------------------------------------------------------------