Files
elasticsearch-js/Gruntfile.js
2014-02-06 14:55:28 -07:00

24 lines
746 B
JavaScript

/* jshint node:true */
'use strict';
module.exports = function (grunt) {
// load plugins
require('load-grunt-config')(grunt, {
configPath: __dirname + '/grunt/config',
init: true,
config: {
distDir: __dirname + '/dist',
bowerSubmodule: __dirname + '/src/bower_es_js',
meta: {
banner: '/*! <%= package.name %> - v<%= package.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= package.homepage ? " * " + package.homepage + "\\n" : "" %>' +
' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= package.author.company %>;' +
' Licensed <%= package.license %> */\n'
}
}
});
// load task definitions
grunt.loadTasks('grunt');
};