Create directories with Grunt.
npm install grunt-mkdir> Create directories with Grunt.

~0.4.0If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
``shell`
npm install grunt-mkdir --save-dev
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js`
grunt.loadNpmTasks('grunt-mkdir');
to the data object passed into grunt.initConfig().`js
grunt.initConfig({
mkdir: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific options go here.
},
},
})
`Note that we cannot use the standard
files section in the configuration, as that one is filtered to only include existing files.$3
#### options.create
Type:
ArrayAn array of folder names to create.
#### options.mode
Type:
NumberThe mode of the file to create. Defaults to
0777 & (~process.umask()).$3
#### Simple usage
The following example will create a
tmp folder that is only accessible to the owner:`js
grunt.initConfig({
mkdir: {
all: {
options: {
mode: 0700,
create: ['tmp']
},
},
},
})
`#### Multiple and recursive folders
You can create multiple folders and even recursively create folders:
`js
grunt.initConfig({
mkdir: {
all: {
options: {
create: ['tmp', 'test/very/deep/folder']
},
},
},
})
``