forked from djipco/webmidi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
98 lines (85 loc) · 2.67 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
module.exports = function (grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
bower: grunt.file.readJSON('bower.json'),
// Bumpup version
bumpup: {
options: {
updateProps: {
pkg: 'package.json'
}
},
files: ['package.json']
},
uglify: {
options: {
banner: "/*\n\n" + grunt.file.read('BANNER') + "\n\n" + grunt.file.read('LICENSE.txt') + "*/\n\n",
compress: {
drop_console: true
},
mangle: false,
preserveComments: false
},
build: {
src: './src/<%= pkg.name %>.js',
dest: './<%= pkg.name %>.min.js'
}
},
// Generate doc
yuidoc: {
compile: {
name: 'WebMidi.js',
version: '<%= pkg.version %>',
description: '<%= pkg.description %>',
url: '<%= pkg.url %>',
logo: "http://cotejp.github.io/webmidi/images/webmidijs-logo-small.png",
options: {
outdir: './docs/latest',
linkNatives: true,
paths: ['./src/']
}
}
},
// Files that are copied or written over must be re-committed.
gitcommit: {
"commitupdated": {
options: {
message: 'Release <%= pkg.version %>.',
noVerify: true,
noStatus: false
},
files: {
src: ['<%= pkg.name %>.min.js', 'docs']
}
}
},
// Push documentation to GitHub pages
'gh-pages': {
options: {
base: './docs'
},
src: ['**/*']
},
release: {
options: {
bump: false,
commitMessage: 'Release <%= version %>'
}
}
});
grunt.loadNpmTasks('grunt-bumpup');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-yuidoc");
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadNpmTasks('grunt-git');
grunt.loadNpmTasks('grunt-release');
grunt.registerTask("publish:prerelease", ['bumpup:prerelease', 'uglify', 'yuidoc', 'gitcommit:commitupdated', 'gh-pages', 'release']);
grunt.registerTask("publish:patch", ['bumpup:patch', 'uglify', 'yuidoc', 'gitcommit:commitupdated', 'gh-pages', 'release']);
grunt.registerTask("publish:minor", ['bumpup:minor', 'uglify', 'yuidoc', 'gitcommit:commitupdated', 'gh-pages', 'release']);
grunt.registerTask("publish:major", ['bumpup:major', 'uglify', 'yuidoc', 'gitcommit:commitupdated', 'gh-pages', 'release']);
grunt.registerTask("publish:manual", ['uglify', 'yuidoc', 'gitcommit:commitupdated', 'gh-pages', 'release']);
};