forked from codeandfury/node-hapi-swagger-models
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGruntfile.js
More file actions
19 lines (17 loc) · 503 Bytes
/
Gruntfile.js
File metadata and controls
19 lines (17 loc) · 503 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var sep = require('path').sep;
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
availabletasks: {
tasks: {
options: {
filter: 'exclude',
tasks: ['availabletasks', 'default']
}
}
}
});
// Load the plugin that provides the tasks.
require('load-grunt-tasks')(grunt);
grunt.registerTask('default', ["availabletasks"]);
};