-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
53 lines (46 loc) · 1.01 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
/*!
* grunt-reverse
* http://github.com/upstage/grunt-reverse
*
* Copyright 2013 Sellside, Inc.
* Licensed under the MIT License
* http://opensource.org/licenses/MIT
*/
module.exports = function(grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
jshint: {
options: {jshintrc: '.jshintrc'},
all: {
src: ['Gruntfile.js', 'tasks/**/*.js']
}
},
reverse: {
options: {
ext: 'hbs',
layout: 'default'
},
bootstrap: {
options: {
parent: 'bs-example'
},
files: {
'tmp/reverse/': ['_demo/**/*.html']
}
},
tags: {
options: {
tags: ['head', 'footer', 'title', 'table']
},
files: {
'tmp/reverse/tags/': ['_demo/**/*.html']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
// These plugins provide necessary tasks.
grunt.loadTasks('tasks');
grunt.registerTask('default', ['jshint', 'reverse']);
};