forked from jsor/jcarousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
159 lines (154 loc) · 4.99 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('jcarousel.jquery.json'),
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
clean: {
files: ['dist']
},
concat: {
options: {
banner: '<%= banner %>',
stripBanners: true
},
all: {
src: [
'src/core.js',
'src/core_plugin.js',
'src/scrollintoview.js',
'src/control.js',
'src/pagination.js',
'src/autoscroll.js'
],
dest: 'dist/jquery.<%= pkg.name %>.js'
},
core: {
src: [
'src/core.js',
'src/core_plugin.js'
],
dest: 'dist/jquery.<%= pkg.name %>-core.js'
},
scrollintoview: {
src: [
'src/scrollintoview.js'
],
dest: 'dist/jquery.<%= pkg.name %>-scrollintoview.js'
},
control: {
src: [
'src/control.js'
],
dest: 'dist/jquery.<%= pkg.name %>-control.js'
},
pagination: {
src: [
'src/pagination.js'
],
dest: 'dist/jquery.<%= pkg.name %>-pagination.js'
},
autoscroll: {
src: [
'src/autoscroll.js'
],
dest: 'dist/jquery.<%= pkg.name %>-autoscroll.js'
}
},
uglify: {
options: {
banner: '<%= banner %>'
},
all: {
src: '<%= concat.all.dest %>',
dest: 'dist/jquery.<%= pkg.name %>.min.js'
},
core: {
src: '<%= concat.core.dest %>',
dest: 'dist/jquery.<%= pkg.name %>-core.min.js'
},
scrollintoview: {
src: '<%= concat.scrollintoview.dest %>',
dest: 'dist/jquery.<%= pkg.name %>-scrollintoview.min.js'
},
control: {
src: '<%= concat.control.dest %>',
dest: 'dist/jquery.<%= pkg.name %>-control.min.js'
},
pagination: {
src: '<%= concat.pagination.dest %>',
dest: 'dist/jquery.<%= pkg.name %>-pagination.min.js'
},
autoscroll: {
src: '<%= concat.autoscroll.dest %>',
dest: 'dist/jquery.<%= pkg.name %>-autoscroll.min.js'
}
},
replace: {
dist: {
options: {
variables: {
'VERSION': '<%= pkg.version %>',
'DATE': '<%= grunt.template.today("yyyy-mm-dd") %>'
},
prefix: '@'
},
files: [
{
'src': ['dist/*.js'],
'dest': './'
}
]
}
},
qunit: {
files: ['test/unit/**/*.html']
},
jshint: {
gruntfile: {
options: {
jshintrc: '.jshintrc'
},
src: 'Gruntfile.js'
},
src: {
options: {
jshintrc: 'src/.jshintrc'
},
src: ['src/**/*.js']
},
test: {
options: {
jshintrc: 'test/unit/.jshintrc'
},
src: ['test/unit/**/*.js']
}
},
watch: {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
},
src: {
files: '<%= jshint.src.src %>',
tasks: ['jshint:src', 'qunit']
},
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'qunit']
}
}
});
grunt.loadNpmTasks('grunt-replace');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['jshint', 'qunit']);
grunt.registerTask('dist', ['clean', 'concat', 'replace', 'uglify']);
};