├── .gitignore ├── .npmignore ├── README.md ├── bin └── contentful-static.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .tmp 2 | npm-debug.log 3 | .conf 4 | node_modules 5 | 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | npm-debug.log 4 | test 5 | Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Textalk/contentful-static/HEAD/README.md -------------------------------------------------------------------------------- /bin/contentful-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Textalk/contentful-static/HEAD/bin/contentful-static.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Textalk/contentful-static/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Textalk/contentful-static/HEAD/package.json --------------------------------------------------------------------------------