flecks/packages/dox/build/flecks.bootstrap.js

14 lines
298 B
JavaScript
Raw Normal View History

2024-01-16 00:28:20 -06:00
const commands = require('./commands');
2022-03-07 00:21:16 -06:00
2024-01-16 00:28:20 -06:00
exports.hooks = {
2024-01-22 09:16:07 -06:00
'@flecks/build.commands': commands,
'@flecks/core.config': () => ({
/**
* Rewrite the output filenames of source files.
*
* `filename.replace(new RegExp([key]), [value]);`
*/
filenameRewriters: {},
}),
2022-03-07 00:21:16 -06:00
};