-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
89 lines (79 loc) · 2.47 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
module.exports = function(grunt) {
grunt.initConfig({
/* Wrap NG templates */
'ngtemplates': {
'default': {
'src': 'src/templates/**.html',
'dest': 'dist/jsdoc-ng-templates.js',
'options': {
'module': 'jsDocNG-Templates',
'bootstrap': function(module, script) {
return "angular.module('" + module + "', [])"
+ ".run(['$templateCache', function($templateCache) {"
+ script + "}]);"
},
'url': function(url) { return url.substring(4); },
'htmlmin': {
collapseBooleanAttributes: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}
}
}
},
/* Uglify task */
'uglify': {
'defaut': {
src: ['src/jsdoc-ng.js', 'dist/jsdoc-ng-templates.js'],
dest: 'dist/jsdoc-ng.min.js',
'options': { 'wrap': true }
}
},
/* Lessify task */
'less': {
'defaut': {
src: 'src/jsdoc-ng.less',
dest: 'dist/jsdoc-ng.min.css',
options: { compress: true }
}
},
/* Sample doccos */
'jsdoc-ng' : {
'dist' : {
template: 'jsdoc-ng',
dest: 'samples-output',
src: ['README.md',
'samples/*.js',
'node_modules/esquire/src/**/*.js',
'node_modules/usrz-promize/src/**/*.js',
'node_modules/grunt-jsdoc/node_modules/jsdoc/lib/jsdoc/**/*.js'],
options: {
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": true,
"monospaceLinks": true,
"windowTitle": "jsDocNG Sample",
"minify": false
},
"markdown": {
"parser": "gfm",
"hardwrap": true
}
}
}
}
});
/* Register ourself (sans NPN) */
grunt.loadTasks("./tasks");
grunt.loadNpmTasks('grunt-angular-templates');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-uglify');
/* Default task: requirejs then uglify */
grunt.registerTask('default', ['ngtemplates', 'uglify', 'less']);
grunt.registerTask('samples', ['default', 'jsdoc-ng']);
};