├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── example ├── .gitignore ├── README.md ├── cached │ ├── file1.md │ └── file2.gif ├── index.html ├── netlify.toml └── package.json ├── index.js ├── manifest.yml └── package.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | .netlify/ 3 | example/ 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/example/README.md -------------------------------------------------------------------------------- /example/cached/file1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/example/cached/file1.md -------------------------------------------------------------------------------- /example/cached/file2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/example/cached/file2.gif -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/example/index.html -------------------------------------------------------------------------------- /example/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/example/netlify.toml -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/index.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/netlify-plugin-cache/HEAD/package.json --------------------------------------------------------------------------------