-
Notifications
You must be signed in to change notification settings - Fork 114
/
Gruntfile.js
executable file
·59 lines (52 loc) · 1.64 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
'pkg': grunt.file.readJSON('package.json'),
'bump': {
options: {
updateConfigs: ['pkg'],
commitFiles: ['-a']
}
},
'uglify': {
options: {
banner: '/*! <%= pkg.name %> v <%= pkg.version %> | Built on <%= grunt.template.today("yyyy-mm-dd HH:MM:sso") %> */\n',
sourceMap: true
},
'build': {
files: {
"dist/xapiwrapper.min.js": [
"lib/cryptojs_v3.1.2.js",
"lib/utf8-text-encoding.js",
"src/activitytypes.js",
"src/verbs.js",
"src/xapiwrapper.js",
"src/xapistatement.js",
"src/xapi-util.js",
"src/xapi-launch.js"
]
}
}
},
'exec': {
docs: 'node ./node_modules/doxstrap/bin/doxstrap.js --title "xAPIWrapper <%= pkg.version %> Reference" --layout "bs-sidebar.html" --no-sort --output doc'
}
});
// Load the plugins.
grunt.loadNpmTasks('grunt-bump');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-exec');
// Default task(s).
grunt.registerTask('default', ['uglify']);//,'exec']);
// Build only
grunt.registerTask('build', ['uglify']);
// Docs only
grunt.registerTask('docs', ['exec']);
// those with adl repo access can use this to publish a tag and release
// $> grunt release:minor
grunt.registerTask('release', 'Build the release of xapiwrapper', function(n) {
var vertype = n;
if (vertype == null) vertype = 'minor';
grunt.task.run('bump-only:' + vertype, 'default', 'bump-commit');
});
};