-
Notifications
You must be signed in to change notification settings - Fork 86
/
Gruntfile.js
107 lines (103 loc) · 2.7 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
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
bower: grunt.file.readJSON('bower.json'),
server: {
port: 8989,
base: '.'
},
qunit: {
all: ['test/specs/**/*.html']
},
uglify: {
dist: {
files: {
'jquery.kinetic.min.js': ['jquery.kinetic.js']
},
options: {
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %> <%= pkg.homepage %> ' +
'\n * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= pkg.license %> */\n'
}
}
},
watch: {
all: {
files: [
'jquery.kinetic.js',
'test/specs/*.js'
],
tasks: ['jshint', 'qunit']
}
},
jshint: {
all: {
options: {
jshintrc: '.jshintrc'
},
src: ['grunt.js', 'jquery.kinetic.js']
}
},
vows: {
local: {
files: ["test/local.vows.js"],
// String {spec|json|dot-matrix|xunit|tap}
// defaults to "dot-matrix"
reporter: "spec"
},
sauce: {
files: ["test/sauce.vows.js"],
// String {spec|json|dot-matrix|xunit|tap}
// defaults to "dot-matrix"
reporter: "spec"
}
},
"string-replace": {
version: {
files: {
"jquery.kinetic.js": "jquery.kinetic.js"
},
options: {
replacements: [{
pattern: /jQuery\.kinetic v\d\.\d\.\d/g,
replacement: "jQuery.kinetic v<%= pkg.version %>"
}]
}
}
},
bump: {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: ['pkg', 'bower'],
push: false,
tagName: '%VERSION%',
commitFiles: ['.']
}
}
});
// Load tasks
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-vows');
grunt.loadNpmTasks('grunt-bump');
grunt.loadNpmTasks('grunt-string-replace');
// Default task.
grunt.registerTask('default', ['jshint', 'qunit']);
//grunt.registerTask('selenium', ['vows:local']); not used any more
grunt.registerTask('sauce', ['vows:sauce']);
grunt.registerTask('release', function(release) {
release = release || 'patch';
grunt.task.run([
'bump-only:' + release,
'default',
'string-replace:version',
'uglify',
'bump-commit'
]);
});
};