piano/grunt/mkdir.js

13 lines
262 B
JavaScript
Raw Permalink Normal View History

2014-11-08 17:52:36 +00:00
/*jshint node:true */
'use strict';
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-mkdir');
grunt.config('mkdir.create-build', {
options: {
create: ['build/<%= grunt.task.current.args[0] %>']
}
});
};