From: Dan Allen Date: Sun, 30 Dec 2018 12:14:09 +0000 (-0700) Subject: add missing file in Gulp build X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=aacad12db269c0ae23312b62ea2ff89f0cd2cef9;p=eg-antora.git add missing file in Gulp build --- diff --git a/gulpfile.js/tasks/index.js b/gulpfile.js/tasks/index.js new file mode 100644 index 0000000..a5795fc --- /dev/null +++ b/gulpfile.js/tasks/index.js @@ -0,0 +1,5 @@ +'use strict' + +const camelCase = (name) => name.replace(/[-]./g, (m) => m.substr(1).toUpperCase()) + +module.exports = require('require-directory')(module, __dirname, { recurse: false, rename: camelCase })