├── .editorconfig ├── .env ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── lib └── index.js ├── package.json ├── test ├── fixtures │ ├── default │ │ ├── app.js │ │ ├── index.html │ │ └── main.js │ ├── error │ │ └── error.html │ ├── json │ │ ├── app.js │ │ ├── index.html │ │ └── main.js │ ├── template-contentful │ │ └── template.html │ ├── template-locals │ │ └── template.html │ └── template │ │ └── template.html └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/default/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/test/fixtures/default/app.js -------------------------------------------------------------------------------- /test/fixtures/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/test/fixtures/default/index.html -------------------------------------------------------------------------------- /test/fixtures/default/main.js: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | -------------------------------------------------------------------------------- /test/fixtures/error/error.html: -------------------------------------------------------------------------------- 1 |

{{ notItem.fields.name }}

2 | -------------------------------------------------------------------------------- /test/fixtures/json/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/test/fixtures/json/app.js -------------------------------------------------------------------------------- /test/fixtures/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/test/fixtures/json/index.html -------------------------------------------------------------------------------- /test/fixtures/json/main.js: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | -------------------------------------------------------------------------------- /test/fixtures/template-contentful/template.html: -------------------------------------------------------------------------------- 1 |

{{ contentful.cats[0].fields.name }}

-------------------------------------------------------------------------------- /test/fixtures/template-locals/template.html: -------------------------------------------------------------------------------- 1 |

{{ localTest }}

2 | -------------------------------------------------------------------------------- /test/fixtures/template/template.html: -------------------------------------------------------------------------------- 1 |

{{ item.fields.name }}

2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-contentful/HEAD/yarn.lock --------------------------------------------------------------------------------