feat(invite): began work on email template build system, and css inlining

This commit is contained in:
Torkel Ödegaard
2015-08-10 17:50:02 +02:00
parent e53c1e39d3
commit dfd1bff389
22 changed files with 2618 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
module.exports = {
dist: {
files: [{
expand: true, // Enable dynamic expansion.
cwd: 'templates', // Src matches are relative to this path.
src: ['*.html'], // Actual pattern(s) to match.
dest: 'dist/', // Destination path prefix.
}],
}
};