forked from oblador/angular-scroll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
62 lines (59 loc) · 1.45 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
module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
options: {
jshintrc: '.jshintrc'
},
gruntfile: {
src: 'Gruntfile.js'
},
lib: {
src: ['src/**/*.js']
}
},
clean: {
dist: ['angular-scroll.js', 'angular-scroll.min.js', 'angular-scroll.min.js.map']
},
concat: {
options: {
separator: "\n\n"
},
dist: {
src: [
'src/module.js',
'src/services/request-animation.js',
'src/services/scroll-position.js',
'src/services/scroller.js',
'src/directives/smooth-scroll.js',
'src/directives/scrollspy.js'
],
dest: 'angular-scroll.js'
}
},
ngmin: {
dist: {
src: ['angular-scroll.js'],
dest: 'angular-scroll.min.js'
}
},
uglify: {
dist: {
options: {
report: 'gzip',
sourceMap: 'angular-scroll.min.js.map'
},
files: {
'angular-scroll.min.js': ['angular-scroll.min.js']
}
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-ngmin');
grunt.registerTask('default', ['jshint', 'clean', 'concat', 'ngmin', 'uglify']);
};