forked from leemunroe/responsive-html-email-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
30 lines (27 loc) · 961 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module.exports = function(grunt) {
grunt.initConfig({
inlinecss: {
main: {
options: {
webResources: {
'images': false
}
},
files: {
'email_inlined_auto.html': 'email.html',
'email2_inlined_auto.html': 'email2.html',
'email_africa1_inlined_auto.html': 'email_africa1.html',
'email3_en_inlined_auto.html': 'email3_en.html',
'email4_inlined.html': 'email3_en.html',
'emai_bf_inlined.html': 'email_black_friday.html',
'email_ad_tech_brunch_inlined.html': 'email_ad_tech_brunch.html',
'email_bf_rus.html': 'email_black_friday_rus.html',
'email_gc_inlined_rus.html': 'email_gender_celebrations.html'
},
}
}
});
grunt.loadNpmTasks('grunt-inline-css');
// Default task(s).
grunt.registerTask('default', ['inlinecss']);
}