├── .gitignore ├── README.md ├── index.js ├── manifest.yml ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/netlify-plugin-gatsby-cache/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/netlify-plugin-gatsby-cache/HEAD/index.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- 1 | name: netlify-plugin-gatsby-cache 2 | inputs: [] 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/netlify-plugin-gatsby-cache/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/netlify-plugin-gatsby-cache/HEAD/yarn.lock --------------------------------------------------------------------------------