forked from caxy/JavaScript-Load-Image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
68 lines (62 loc) · 1.79 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
/*
* JavaScript Load Image Gruntfile
* https://github.com/blueimp/JavaScript-Load-Image
*
* 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/load-image.js',
'js/load-image-ios.js',
'js/load-image-orientation.js',
'js/load-image-meta.js',
'js/load-image-exif.js',
'js/load-image-exif-map.js',
'js/demo.js',
'test/test.js'
]
},
mocha: {
all: {
src: ['test/index.html'],
options: {
run: true,
bail: true,
log: true,
reporter: 'Spec'
},
mocha: {
ignoreLeaks: false
}
}
},
uglify: {
production: {
src: [
'js/load-image.js',
'js/load-image-ios.js',
'js/load-image-orientation.js',
'js/load-image-meta.js',
'js/load-image-exif.js',
'js/load-image-exif-map.js'
],
dest: 'js/load-image.min.js'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-mocha');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-bump-build-git');
grunt.registerTask('test', ['jshint', 'mocha']);
grunt.registerTask('default', ['test', 'uglify']);
};