forked from raciel/helabs.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
51 lines (47 loc) · 1.66 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
js: {
files: ['javascripts/source/**'],
tasks: ['uglify'],
options: {
livereload: true
}
}
},
uglify: {
my_target: {
// as execution order matters for JS. script.js has to be last
files: {
'javascripts/application.min.js': [
'javascripts/source/handlebars-v1.3.0.js',
'javascripts/source/instantclick.min.js',
'javascripts/source/jquery.cycle2.js',
'javascripts/source/jquery.cycle2.carousel.js',
'javascripts/source/jquery.cycle2.swipe.js',
'javascripts/source/jquery.localScroll.js',
'javascripts/source/jquery.maskedinput.js',
'javascripts/source/jquery.prettyPhoto.js',
'javascripts/source/jquery.scrollTo.js',
'javascripts/source/jquery.tipTip.js',
'javascripts/source/jquery.validate.js',
'javascripts/source/jquery.touchSwipe.min.js',
'javascripts/source/jquery.liquid-slider.min.js',
'javascripts/source/jquery.bxslider.min.js',
'javascripts/source/jquery.easing.1.3.js',
'javascripts/source/testimonials.js',
'javascripts/source/scripts.js'
]
}
}
}
});
//Load NPM tasks
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-uglify');
//Making grunt default to force in order not to break the project.
grunt.option('force', true);
//Default task(s).
grunt.registerTask('default', ['uglify', 'watch']);
};