flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
43 lines (39 loc) • 1.27 kB
JavaScript
;
var path = require('path');
const pluginName = "flowbiteReact";
const pluginPath = "flowbite-react/plugin";
const classListFile = "class-list.json";
const configFile = "config.json";
const outputDir = ".flowbite-react";
const packageJsonFile = "package.json";
const processIdFile = "pid";
const vscodeDir = ".vscode";
const classListFilePath = path.join(outputDir, classListFile);
const configFilePath = path.join(outputDir, configFile);
const excludeDirs = [
".contentlayer",
".git",
".next",
".turbo",
".vercel",
"build",
"coverage",
"dist",
"node_modules",
"out",
"storybook-static"
];
const automaticClassGenerationMessage = `Components specified in ${configFilePath}. Automatic class generation is disabled.`;
exports.automaticClassGenerationMessage = automaticClassGenerationMessage;
exports.classListFile = classListFile;
exports.classListFilePath = classListFilePath;
exports.configFile = configFile;
exports.configFilePath = configFilePath;
exports.excludeDirs = excludeDirs;
exports.outputDir = outputDir;
exports.packageJsonFile = packageJsonFile;
exports.pluginName = pluginName;
exports.pluginPath = pluginPath;
exports.processIdFile = processIdFile;
exports.vscodeDir = vscodeDir;
//# sourceMappingURL=consts.cjs.map