-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
82 lines (71 loc) · 1.75 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
var scripts = ['js/mustache.js', 'js/templates.js', 'js/**/*.js', '!js/scripts.js'];
module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
dist: {
src: scripts,
dest: 'js/scripts.js'
}
},
uglify: {
min: {
files: {
'js/scripts.js': ['js/scripts.js']
}
}
},
compass: {
options: {
sassDir: 'sass',
cssDir: 'css'
},
dev: {
},
production: {
options: {
environment: 'production',
outputStyle: 'compressed',
force: true
}
}
},
smushit: {
images: {
src: ['img/**/*.{png,jpg,jpeg}']
}
},
watch: {
options: {
livereload: true
},
scripts: {
files: scripts,
tasks: ['concat']
},
styles: {
files: ['sass/**/*.{sass,scss}'],
tasks: ['compass:dev']
}
},
connect: {
server: {
options: {
port: 8888,
hostname: '*'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-smushit');
grunt.loadNpmTasks('grunt-contrib-connect');
// Development task checks and concatenates JS, compiles SASS preserving comments and nesting, runs dev server, and starts watch
grunt.registerTask('default', ['concat', 'compass:dev', 'connect:server', 'watch']);
// Build task builds minified versions of static files
grunt.registerTask('build', ['compass:production', 'concat', 'uglify', 'smushit']);
};