22 lines
558 B
JavaScript
22 lines
558 B
JavaScript
|
"use strict";
|
||
|
|
||
|
// Taken from views/index.js
|
||
|
|
||
|
// This creates a version of `require()` in the context of the current
|
||
|
// directory, so we iterate over its content, which is a map statically built by
|
||
|
// Webpack.
|
||
|
// Second argument says it's recursive, third makes sure we only load javascript.
|
||
|
const commands = require.context("./", true, /\.js$/);
|
||
|
|
||
|
module.exports = commands.keys().reduce((acc, path) => {
|
||
|
const command = path.substring(2, path.length - 3);
|
||
|
|
||
|
if (command === "index") {
|
||
|
return acc;
|
||
|
}
|
||
|
|
||
|
acc[command] = commands(path);
|
||
|
|
||
|
return acc;
|
||
|
}, {});
|