-
-
Notifications
You must be signed in to change notification settings - Fork 222
/
gruntfile.js
114 lines (100 loc) · 2.78 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
/*global module:false*/
module.exports = function(grunt) {
// show elapsed time at the end
require('time-grunt')(grunt)
// load all grunt tasks
require('load-grunt-tasks')(grunt)
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner:
'/*! Image Map Resizer (imageMapResizer.min.js ) - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
' * Desc: Resize HTML imageMap to scaled image.\n' +
' * Copyright: (c) <%= grunt.template.today("yyyy") %> David J. Bradshaw - [email protected]\n' +
' * License: MIT\n */\n',
},
qunit: {
files: ['test/*.html'],
},
jshint: {
options: {
asi: true,
globals: {
jQuery: false,
require: true,
process: true,
},
},
gruntfile: {
src: 'gruntfile.js',
},
code: {
src: ['js/imageMapResizer.js'],
},
},
uglify: {
options: {
sourceMap: true,
sourceMapIncludeSources: true,
report: 'gzip',
},
main: {
options: {
banner: '<%= meta.banner %>',
sourceMapName: 'js/imageMapResizer.map',
},
src: 'js/imageMapResizer.js',
dest: 'js/imageMapResizer.min.js',
},
},
watch: {
files: ['js/**/*'],
tasks: 'default',
},
bump: {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: ['pkg'],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['-a'], // '-a' for all files
createTag: true,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: true,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d', // options to use with '$ git describe'
},
},
shell: {
options: {
stdout: true,
stderr: true,
failOnError: true,
},
// deployExample: {
// command: function(){
// var
// retStr = '',
// fs = require('fs');
// if (fs.existsSync('bin')) {
// retStr = 'bin/deploy.sh';
// }
// return retStr;
// }
// },
npm: {
command: 'npm publish',
},
},
})
grunt.registerTask('default', ['notest'])
grunt.registerTask('notest', ['jshint', 'uglify'])
grunt.registerTask('test', ['jshint', 'qunit'])
grunt.registerTask('postBump', ['uglify', 'bump-commit', 'shell'])
grunt.registerTask('patch', ['default', 'bump-only:patch', 'postBump'])
grunt.registerTask('minor', ['default', 'bump-only:minor', 'postBump'])
grunt.registerTask('major', ['default', 'bump-only:major', 'postBump'])
}