├── .github └── workflows │ ├── publish.yml │ └── testing.yml ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── rollup.config.js ├── src └── subscription-link.ts ├── tests └── subscription-link.spec.ts └── yarn.lock /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .vscode 4 | coverage 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/subscription-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/src/subscription-link.ts -------------------------------------------------------------------------------- /tests/subscription-link.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/tests/subscription-link.spec.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekonz/apollo-lighthouse-subscription-link/HEAD/yarn.lock --------------------------------------------------------------------------------