BakeryJS
BakeryJS copied to clipboard
Support glob pattern for components directory
Instead of specyfing componentsPath
as e.g. ../components
I could say:
['components/**/*.js', '!components/**/*.test.js']
to register all the components without their tests.
Use package such as fast-glob.
Bonus: Make it async.