-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathGruntfile.js
36 lines (32 loc) · 840 Bytes
/
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
module.exports = function(grunt) {
// Load plugins
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: '/*! Angular Counter - v<%= pkg.version %> - <%= pkg.homepage %> - (c) 2015 Indri Muska - MIT */\n'
},
main: {
files: {
'js/angular-counter.min.js': ['js/angular-counter.js'],
'js/angular-counter-with-easing.min.js': ['js/jquery.easing.min.js', 'js/angular-counter.js']
}
}
},
'sync-json': {
options: {
include: ['name', 'description', 'version']
},
bower: {
files: {
"bower.json": "package.json"
}
}
}
});
// Default tasks.
grunt.registerTask('default', ['uglify', 'sync-json']);
grunt.registerTask('update-patch', ['bumpup:patch', 'default']);
};