flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
21 lines (17 loc) • 423 B
JavaScript
;
var build = require('../cli/commands/build.cjs');
var dev = require('../cli/commands/dev.cjs');
var index = require('./index.cjs');
var modernjs = () => ({
name: index.pluginName,
setup(api) {
api.onBeforeBuild(async () => {
await build.build();
});
api.onBeforeDev(async () => {
await dev.dev();
});
}
});
module.exports = modernjs;
//# sourceMappingURL=modernjs.cjs.map