UNPKG

beathers

Version:

Beather is a lightweight SCSS library that serves as a comprehensive design system for your projects. It offers a structured and consistent approach to manage colors, fonts, and other design related variables, making it easier to maintain a cohesive visua

11 lines (10 loc) 310 B
#!/usr/bin/env node import { Commands } from '../scripts/commands/list.js'; async function main() { const args = process.argv.slice(2); const command = args[0] ?? 'build:pack'; const commands = Commands(args); const action = commands[command] ?? commands.default; await action(); } main();