--- /dev/null
+module.exports = function(grunt) {
+ grunt.initConfig({
+ pkg: grunt.file.readJSON('package.json'),
+ includes: {
+ files: {
+ src: ['templates/base/*.html', 'templates/examples/*.html'],
+ dest: 'tmp',
+ flatten: true,
+ cwd: '.',
+ options: {
+ includeRegexp: /^\s*\/\*\s*[Ii]nclude\s+([^'"\s]+)\s*\*\/$/,
+ includePath: 'css',
+ }
+ }
+ }
+ });
+
+ grunt.loadNpmTasks('grunt-includes');
+
+ grunt.registerTask('default', ['includes']);
+};
\ No newline at end of file
--- /dev/null
+{
+ "name": "Ink",
+ "version": "0.8.0",
+ "description": "Ink is a responsive email framework for making emails that look great on any device.",
+ "directories": {
+ "doc": "docs"
+ },
+ "dependencies": {
+ "grunt": "~0.4.1",
+ "grunt-cli": "~0.1.9"
+ },
+ "devDependencies": {
+ "grunt-includes": "~0.3.5"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/zurb/ink.git"
+ },
+ "keywords": [
+ "ink",
+ "responsive",
+ "email",
+ "css",
+ "framework"
+ ],
+ "author": "ZURB",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/zurb/ink/issues"
+ }
+}