-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
45 lines (43 loc) · 1.08 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
// note that these settings are largely copied for gulp also
module.exports = function(grunt) {
// configure project for HDS
grunt.initConfig({
// load HDS NodeJS package
pkg: grunt.file.readJSON('package.json'),
// configure CSSLint task
csslint: {
options: {
csslintrc: '.csslintrc'
},
dist: {
src: ['src/*.css']
}
},
// configure copy task
copy: {
dist: {
expand: true,
flatten: true,
filter: 'isFile',
src: ['src/**'],
dest: 'dist/'
}
},
// configure CSSMin task
cssmin: {
dist: {
banner: '/*Hot Dog Stand v0.1.0 https://github.com/steverichey/hot-dog-stand MIT*/',
files: [{
src: ['dist/hotdogstand.css'],
dest: 'dist/hotdogstand.min.css'
}]
}
}
});
// load tasks
grunt.loadNpmTasks('grunt-contrib-csslint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-cssmin');
// Default task
grunt.registerTask('default', ['csslint', 'copy', 'cssmin']);
};