├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-template.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ └── stale.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── __tests__ ├── CommentCount.js ├── CommentEmbed.js └── Disqus.js ├── config ├── jest-preprocess.js └── setup-test-env.js ├── docs ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md └── CONTRIBUTING.md ├── jest.config.js ├── package.json ├── src ├── components │ ├── CommentCount.jsx │ ├── CommentEmbed.jsx │ └── Disqus.jsx ├── gatsby-node.js ├── index.js └── utils.js ├── types └── index.d.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.github/ISSUE_TEMPLATE/question-template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/CommentCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/__tests__/CommentCount.js -------------------------------------------------------------------------------- /__tests__/CommentEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/__tests__/CommentEmbed.js -------------------------------------------------------------------------------- /__tests__/Disqus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/__tests__/Disqus.js -------------------------------------------------------------------------------- /config/jest-preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/config/jest-preprocess.js -------------------------------------------------------------------------------- /config/setup-test-env.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect'; 2 | -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/package.json -------------------------------------------------------------------------------- /src/components/CommentCount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/src/components/CommentCount.jsx -------------------------------------------------------------------------------- /src/components/CommentEmbed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/src/components/CommentEmbed.jsx -------------------------------------------------------------------------------- /src/components/Disqus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/src/components/Disqus.jsx -------------------------------------------------------------------------------- /src/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/src/gatsby-node.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/src/utils.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tterb/gatsby-plugin-disqus/HEAD/yarn.lock --------------------------------------------------------------------------------