-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGruntfile.js
106 lines (92 loc) · 2.71 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
module.exports = function (grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Bumpup version
bumpup: {
options: {
updateProps: {
pkg: 'package.json'
}
},
files: ['package.json']
},
// Uglify DOES NOT support ES6 !!!
// 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'
// }
// },
concat: {
options: {
banner: "/*\n\n" + grunt.file.read('BANNER') + "\n\n" + grunt.file.read('LICENSE.txt') + "*/\n\n",
},
dist: {
src: ['./src/<%= pkg.name %>.js'],
dest: './<%= pkg.name %>.js',
},
},
// Generate doc
jsdoc : {
dist : {
src: ['./src/*.js'],
options: {
destination: './docs',
template : "./jsdoc/docdash",
configure : "./jsdoc/jsdoc.json",
readme: "./README.md",
query: "name=<%= pkg.name %>&version=<%= pkg.version %>&author=<%= pkg.author %>"
}
}
},
// 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 %>.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-concat');
// grunt.loadNpmTasks('grunt-contrib-clean');
// grunt.loadNpmTasks('grunt-contrib-compress');
// grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadNpmTasks('grunt-git');
grunt.loadNpmTasks('grunt-release');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.registerTask('publish', ['publish:prerelease']);
grunt.registerTask("publish:prerelease", ['bumpup:prerelease', 'concat', 'jsdoc', 'gitcommit:commitupdated', 'gh-pages', 'release']);
// grunt.registerTask("publish:patch", ['bumpup:patch', 'yuidoc', 'release']);
// grunt.registerTask('publish:minor', ['bumpup:minor', 'yuidoc', 'release']);
// grunt.registerTask('publish:major', ['bumpup:major', 'yuidoc', 'release']);
};