forked from bennettfeely/clippy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
103 lines (97 loc) · 2.49 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
htmlmin: {
dist: {
options: {
removeComments: true,
collapseWhitespace: true,
minifyJS: true
},
files: {
'index.html' : 'dev/index.html'
}
}
},
uglify: {
my_target: {
options : {
compress: {
drop_console: true
}
},
files: {
'clip.min.js': ['dev/clip.js']
}
}
},
sass: {
dist: {
files: {
'dev/style.css' : 'dev/style.scss'
}
}
},
autoprefixer: {
options: {
browsers: ['last 3 version']
},
dist: {
files: {
'dev/style.css' : 'dev/style.css'
}
}
},
remfallback: {
options: {
log: false,
replace: false
},
your_target: {
files: {
// 'Sites/dev/style.ie8.css': ['sites/dev/style.css']
}
}
},
cssmin: {
add_banner: {
options: {
report: true,
banner: '/* \nBennett Feely\nhttp://bennettfeely.com \n*/'
},
files: {
'style.min.css' : ['dev/style.css']
}
}
},
watch: {
options: {
livereload: false
},
html : {
files: ['dev/index.html'],
tasks: ['htmlmin']
},
scripts : {
files: ['dev/clip.js'],
tasks: ['uglify']
},
sass: {
files: ['dev/style.scss'],
tasks: ['sass','autoprefixer','cssmin'],
options: {
livereload: false
},
},
}
});
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-remfallback');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ["watch"]);
};