forked from webcreate/infinite-ajax-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
65 lines (62 loc) · 1.81 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner: '/*!\n' +
' * <%= pkg.title || pkg.name %> v<%= pkg.version %>\n' +
' * A jQuery plugin for infinite scrolling\n' +
' <%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
' *\n' +
' * Commercial use requires one-time purchase of a commercial license\n' +
' * http://infiniteajaxscroll.com/docs/license.html\n' +
' *\n' +
' * Non-commercial use is licensed under the MIT License\n' +
' *\n' +
' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.company %> (<%= pkg.author.name %>)\n' +
' */' +
'\n'
},
buster: {
default: {
test: {
config: 'test/buster.js',
reporter: 'specification'
}
}
},
jshint: {
default: {
src: ['Gruntfile.js', 'src/*.js', 'test/*.js']
}
},
concat: {
options: {
separator: ';'
},
dist: {
src: ['<banner:meta.banner>', 'src/callbacks.js', 'src/jquery-ias.js', 'src/extension/*.js'],
dest: 'dist/<%= pkg.name %>.js'
}
},
uglify: {
options: {
banner: '<%=meta.banner %>'
},
dist: {
files: {
'dist/<%= pkg.name %>.min.js': ['dist/<%= pkg.name %>.js']
}
}
}
});
grunt.loadNpmTasks('grunt-buster');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
// Default task(s).
grunt.registerTask('default', []);
grunt.registerTask('build', ['concat','uglify']);
// other
grunt.registerTask('test', ['buster']);
};