forked from blueimp/Gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
81 lines (75 loc) · 2.49 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
/*
* blueimp Gallery Gruntfile
* https://github.com/blueimp/grunt-locales
*
* Copyright 2013, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
/*global module */
module.exports = function (grunt) {
'use strict';
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'js/blueimp-helper.js',
'js/blueimp-gallery.js',
'js/blueimp-gallery-fullscreen.js',
'js/blueimp-gallery-indicator.js',
'js/blueimp-gallery-video.js',
'js/blueimp-gallery-vimeo.js',
'js/blueimp-gallery-youtube.js',
'js/jquery.blueimp-gallery.js',
'js/demo.js'
]
},
uglify: {
standalone: {
src: [
'js/blueimp-helper.js',
'js/blueimp-gallery.js',
'js/blueimp-gallery-fullscreen.js',
'js/blueimp-gallery-indicator.js',
'js/blueimp-gallery-video.js',
'js/blueimp-gallery-vimeo.js',
'js/blueimp-gallery-youtube.js'
],
dest: 'js/blueimp-gallery.min.js'
},
jqueryPlugin: {
src: [
'js/blueimp-gallery.js',
'js/blueimp-gallery-fullscreen.js',
'js/blueimp-gallery-indicator.js',
'js/blueimp-gallery-video.js',
'js/blueimp-gallery-vimeo.js',
'js/blueimp-gallery-youtube.js',
'js/jquery.blueimp-gallery.js'
],
dest: 'js/jquery.blueimp-gallery.min.js'
}
},
less: {
production: {
options: {
cleancss: true
},
src: [
'css/blueimp-gallery.css',
'css/blueimp-gallery-indicator.css',
'css/blueimp-gallery-video.css'
],
dest: 'css/blueimp-gallery.min.css'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-bump-build-git');
grunt.registerTask('test', ['jshint']);
grunt.registerTask('default', ['test', 'less', 'uglify']);
};