-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGruntfile.js
127 lines (115 loc) · 3.33 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
module.exports = function(grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner: [
'/**',
' * <%= pkg.description %>',
' * @version v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>' +
' * @link <%= pkg.homepage %>',
' * @author <%= pkg.author %>',
' * @license MIT License, http://www.opensource.org/licenses/MIT',
' */',
''
].join('\n')
},
dirs: {
dest: 'dist'
},
concat: {
options: {
banner: '<%= meta.banner %>'
},
dist: {
src: ['src/angular-filters.js', 'src/**/*-filter.js'],
dest: '<%= dirs.dest %>/<%= pkg.name %>.js'
}
},
bowerInstall: {
install: {
}
},
jshint: {
files: ['Gruntfile.js', 'src/angular-filters.js', 'src/**/*.js'],
options: {
jshintrc: true
}
},
karma: {
options: {
configFile: 'karma.conf.js'
},
build: {
singleRun: true,
autoWatch: false
},
debug: {
singleRun: false,
autoWatch: true,
browsers: ['Chrome']
},
travis: {
singleRun: true,
autoWatch: false,
browsers: ['Firefox']
},
travisUnderscore: {
singleRun: true,
autoWatch: false,
browsers: ['Firefox'],
configFile: 'karma.underscore.conf.js'
},
buildUnderscore: {
configFile: 'karma.underscore.conf.js',
singleRun: true,
autoWatch: false
},
dev: {
autoWatch: true
}
},
changelog: {
options: {
dest: 'CHANGELOG.md'
}
}
});
// Load the plugin that provides the "jshint" task.
grunt.loadNpmTasks('grunt-contrib-jshint');
// Load the plugin that provides the "concat" task.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-bower-task');
grunt.renameTask('bower', 'bowerInstall');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-conventional-changelog');
// Default task.
grunt.registerTask('default', ['build']);
// Build task.
grunt.registerTask('build', ['bowerInstall', /* 'test', */ 'concat']);
grunt.registerTask('test', ['karma:build', 'karma:buildUnderscore']);
grunt.registerTask('test-debug', ['karma:debug']);
grunt.registerTask('travis', ['karma:travis', 'karma:travisUnderscore']);
// Provides the "bump" task.
grunt.registerTask('bump', 'Increment version number', function() {
var versionType = grunt.option('type');
function bumpVersion(version, versionType) {
var type = {patch: 2, minor: 1, major: 0},
parts = version.split('.'),
idx = type[versionType || 'patch'];
parts[idx] = parseInt(parts[idx], 10) + 1;
while(++idx < parts.length) { parts[idx] = 0; }
return parts.join('.');
}
var version;
function updateFile(file) {
var json = grunt.file.readJSON(file);
version = json.version = bumpVersion(json.version, versionType || 'patch');
grunt.file.write(file, JSON.stringify(json, null, ' '));
}
updateFile('package.json');
updateFile('bower.json');
grunt.log.ok('Version bumped to ' + version);
});
};