-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
128 lines (109 loc) · 3.07 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* global module */
module.exports = function(grunt) {
var DEBUG_ON = !!grunt.option('dev');
if (DEBUG_ON) {
grunt.log.writeln('JS/CSS minification is off. If you wish to enable minification, run grunt without --dev');
} else {
grunt.log.writeln('JS/CSS minification is on. If you wish to disable minification, run grunt with --dev');
}
var default_tasks = [];
default_tasks.push('copy');
default_tasks.push('sass');
if (!DEBUG_ON) {
default_tasks.push('uglify');
default_tasks.push('cssmin');
}
/*******************
* WATCH OPTIONS *
*******************/
var watch_options = {
scripts: {
files: ['src/**/*', 'Gruntfile.js', 'package.json'],
tasks: default_tasks,
options: {
atBegin: true
}
}
};
/******************
* COPY OPTIONS *
******************/
var copy_options = {
main: {
files: [{
expand: true,
cwd: 'src/',
src: ['**/*'],
dest: 'build/',
filter: 'isFile'
// filter: function non_compiled_files (path) {
// return !/(.scss|.js$)/.test(path);
// }
}, { // make sure app.js gets copied to app.min.js even when --dev
// is on
src: 'src/js/main.js',
dest: 'build/js/main.min.js'
}]
}
};
/******************
* SASS OPTIONS *
******************/
var sass_options = {
dist: {
options: {
lineNumbers: true,
precision: 20
},
files: {
'build/css/app.min.css': 'src/css/app.scss'
}
}
};
/********************
* UGLIFY OPTIONS *
********************/
var uglify_options = {
my_target: {
files: {
'build/js/app.min.js': [
'src/js/*'
]
}
},
options: {
mangle: !DEBUG_ON,
compress: !DEBUG_ON,
report: DEBUG_ON,
preserveComments: DEBUG_ON
}
};
/********************
* CSSMIN OPTIONS *
********************/
var cssmin_options = {
minify: {
expand : true,
cwd : 'src/css/',
src : 'app.css',
dest : 'build/css/',
ext : '.min.css'
},
options: {
report: 'gzip'
}
};
grunt.initConfig({
watch : watch_options,
copy : copy_options,
sass : sass_options,
uglify : uglify_options,
cssmin : cssmin_options
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('default', default_tasks);
};