├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── jest.config.js ├── jest.preset.js ├── logo.png ├── nx.json ├── package.json ├── packages ├── gatsby-plugin-e2e │ ├── jest.config.js │ ├── tests │ │ └── gatsby-plugin.test.ts │ ├── tsconfig.e2e.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── gatsby-plugin │ ├── .eslintrc.json │ ├── LICENSE │ ├── README.md │ ├── babel.ts │ ├── builders.json │ ├── collection.json │ ├── jest.config.js │ ├── package.json │ ├── plugins │ └── nx-gatsby-ext-plugin │ │ ├── gatsby-config.ts │ │ ├── gatsby-node.ts │ │ └── package.json │ ├── publish.sh │ ├── src │ ├── builders │ │ ├── build │ │ │ ├── builder.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ │ └── server │ │ │ ├── builder.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ ├── index.ts │ ├── schematics │ │ ├── application │ │ │ ├── application.ts │ │ │ ├── files │ │ │ │ ├── .babelrc.template │ │ │ │ ├── .gitignore │ │ │ │ ├── .prettierignore │ │ │ │ ├── .prettierrc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── gatsby-browser.js │ │ │ │ ├── gatsby-config.js.template │ │ │ │ ├── gatsby-node.js │ │ │ │ ├── gatsby-ssr.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── images │ │ │ │ │ │ └── logo.png │ │ │ │ │ └── pages │ │ │ │ │ │ ├── 404.js │ │ │ │ │ │ ├── index.__style__.template │ │ │ │ │ │ ├── index.spec.tsx.template │ │ │ │ │ │ ├── index.tsx.template │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ └── star.svg │ │ │ │ └── tsconfig.json │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ │ ├── component │ │ │ ├── component.ts │ │ │ └── schema.json │ │ ├── init │ │ │ ├── init.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ │ └── page │ │ │ ├── page.ts │ │ │ └── schema.json │ └── utils │ │ ├── get-project-root.ts │ │ ├── styles.ts │ │ └── versions.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── tools ├── generators │ └── .gitkeep ├── scripts │ ├── publish.js │ └── publish.sh └── tsconfig.tools.json ├── tsconfig.base.json ├── workspace.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | projects: ['/packages/gatsby-plugin'], 3 | }; 4 | -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/jest.preset.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/logo.png -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/package.json -------------------------------------------------------------------------------- /packages/gatsby-plugin-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin-e2e/jest.config.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-e2e/tests/gatsby-plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin-e2e/tests/gatsby-plugin.test.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /packages/gatsby-plugin-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin-e2e/tsconfig.json -------------------------------------------------------------------------------- /packages/gatsby-plugin-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/.eslintrc.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/LICENSE -------------------------------------------------------------------------------- /packages/gatsby-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/README.md -------------------------------------------------------------------------------- /packages/gatsby-plugin/babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/babel.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/builders.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/collection.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/jest.config.js -------------------------------------------------------------------------------- /packages/gatsby-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/package.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/plugins/nx-gatsby-ext-plugin/gatsby-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/plugins/nx-gatsby-ext-plugin/gatsby-config.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/plugins/nx-gatsby-ext-plugin/gatsby-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/plugins/nx-gatsby-ext-plugin/gatsby-node.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/plugins/nx-gatsby-ext-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/plugins/nx-gatsby-ext-plugin/package.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/publish.sh -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/builders/build/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/builders/build/builder.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/builders/build/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/builders/build/schema.d.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/builders/build/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/builders/build/schema.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/builders/server/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/builders/server/builder.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/builders/server/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/builders/server/schema.d.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/builders/server/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/builders/server/schema.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/application.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/.babelrc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/.babelrc.template -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/.gitignore -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/.prettierignore -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/.prettierrc -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/LICENSE -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/README.md -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/gatsby-browser.js -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/gatsby-config.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/gatsby-config.js.template -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/gatsby-node.js -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/gatsby-ssr.js -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/package.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/src/images/logo.png -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/src/pages/404.js -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/src/pages/index.__style__.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/src/pages/index.__style__.template -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/src/pages/index.spec.tsx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/src/pages/index.spec.tsx.template -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/src/pages/index.tsx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/src/pages/index.tsx.template -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/src/pages/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/src/pages/logo.svg -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/src/pages/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/src/pages/star.svg -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/files/tsconfig.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/schema.d.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/application/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/application/schema.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/component/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/component/component.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/component/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/component/schema.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/init/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/init/init.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/init/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/init/schema.d.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/init/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/init/schema.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/page/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/page/page.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/schematics/page/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/schematics/page/schema.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/utils/get-project-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/utils/get-project-root.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/utils/styles.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/src/utils/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/src/utils/versions.ts -------------------------------------------------------------------------------- /packages/gatsby-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/tsconfig.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/gatsby-plugin/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/packages/gatsby-plugin/tsconfig.spec.json -------------------------------------------------------------------------------- /tools/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/scripts/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/tools/scripts/publish.js -------------------------------------------------------------------------------- /tools/scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/tools/scripts/publish.sh -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/workspace.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/gatsby/HEAD/yarn.lock --------------------------------------------------------------------------------