-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
88 lines (77 loc) · 2.54 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
coffee: {
compile: {
options:{
join: true
},
files:{
'tmp/<%= pkg.name %>-core.js': ['src/base.js.coffee', 'src/**/*.coffee', 'lib/**/*.coffee']
}
}
},
concat: {
options: {
banner: '/*! <%= pkg.name %> v<%= grunt.file.readJSON("package.json").version %> | <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build:{
src: ["lib/*.js", "tmp/*.js"],
dest: "build/<%= pkg.name %>.js"
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> v<%= grunt.file.readJSON("package.json").version %> | <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build: {
files: {
'build/<%= pkg.name %>.min.js': ['build/<%= pkg.name %>.js']
}
}
},
clean:{
build: ["tmp/*.js", "build/*.js"]
},
release: {
options: {
commitMessage: 'Release v<%= grunt.file.readJSON("package.json").version %>',
tagMessage: 'Release v<%= grunt.file.readJSON("package.json").version %>',
tagName: 'v<%= grunt.file.readJSON("package.json").version %>'
},
},
gitcommit:{
release:{
options:{
message: 'Release v<%= grunt.file.readJSON("package.json").version %>'
},
files: {
src: ['build/*.js', 'package.json']
},
},
},
gitpush:{
release:{
remote: 'origin'
},
},
nodeunit: {
all: ['test/*_test.coffee'],
options: {}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-git');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-release-steps');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-git');
grunt.registerTask('default', ['test']);
grunt.registerTask('build', ['clean:build', 'coffee:compile', 'concat:build', 'uglify:build'])
grunt.registerTask('release:patch', ['test', 'release:bump:patch', 'build', 'gitcommit:release', 'gitpush', 'release:tag:pushTags'])
grunt.registerTask('release:minor', ['test', 'release:bump:minor', 'build', 'gitcommit:release', 'gitpush', 'release:tag:pushTags'])
grunt.registerTask('release:major', ['test', 'release:bump:major', 'build', 'gitcommit:release', 'gitpush', 'release:tag:pushTags'])
grunt.registerTask('test', ['nodeunit']);
};