├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── _Gruntfile.js │ ├── _index.html │ ├── _package.json │ └── scss │ └── style.scss ├── package.json └── test └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/app/templates/_Gruntfile.js -------------------------------------------------------------------------------- /app/templates/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/app/templates/_index.html -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/app/templates/scss/style.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/package.json -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahvi/generator-htmlemail/HEAD/test/test-load.js --------------------------------------------------------------------------------