kibana/tasks/touch_config.js
Chris Cowan 49017ee7cf Refactoring Directory Layout for Build Process
- Moving bower_componets to src/kibana
- Moving server to src/server
- Adjusting all the build scripts and tests
- Adding proxy for backend server to connect
- Adding build steps for jar and server
2014-09-08 09:59:29 -07:00

9 lines
296 B
JavaScript

module.exports = function (grunt) {
var join = require('path').join;
grunt.registerTask('touch_config', function () {
var configFile = join(grunt.config.get('build'), 'src', 'config');
grunt.log.ok('Touching: ' + configFile);
grunt.file.write(configFile, 'delete this');
});
};