We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•598 B
import { BEM_ALERT, BEM_ICON } from '@public-ui/components';
import type { Command } from 'commander';
import { generateBemScssFile } from 'typed-bem/scss';
/**
* This function is used to register the scss generator command.
* @param {Command} program The program object to register the command
*/
export default function (program: Command): void {
program
.command('generate-scss')
.description('Generate SCSS files with BEM selectors for KoliBri components (experimental).')
.action(() => {
generateBemScssFile(BEM_ALERT, 'alert');
generateBemScssFile(BEM_ICON, 'icon');
});
}