From 61cd64b3654fefe74333b0730ab175ae25d6b8aa Mon Sep 17 00:00:00 2001 From: db developer Date: Thu, 12 Aug 2021 15:37:09 +0200 Subject: [PATCH] required by grunt-mkdir --- .conf/grunt/mkdir.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .conf/grunt/mkdir.js diff --git a/.conf/grunt/mkdir.js b/.conf/grunt/mkdir.js new file mode 100644 index 0000000..baa7fb0 --- /dev/null +++ b/.conf/grunt/mkdir.js @@ -0,0 +1,23 @@ +/* + * grunt-git + * https://github.com/rubenv/grunt-git + * + * Copyright (c) 2013 Ruben Vermeersch + * Licensed under the MIT license. + * + *//* jshint esversion: 6 */ + +module.exports = function ( grunt, options ) { + return { + build: { + options: { + mode: 0777, + create: [ + options.BUILDDIR, + options.DISTDIR, + options.TMPDIR + ] + } + } + } +};