[READ-ONLY] Mirror of https://github.com/flo-bit/ui-kit. 🦊 fox ui, svelte 5 and tailwind 4 flo-bit.dev/ui-kit/
svelte tailwindcss ui-components
0

Configure Feed

Select the types of activity you want to include in your feed.

update cli

Florian (Mar 29, 2025, 9:22 AM +0100) 803eccf3 05ec15ec

+10 -3
+5 -2
package.json
··· 1 1 { 2 2 "name": "fuchs", 3 - "version": "0.0.25", 3 + "version": "0.0.26", 4 4 "type": "module", 5 5 "description": "Beautiful UI components built with Tailwind 4 and Svelte 5", 6 6 "homepage": "https://flo-bit.dev/ui-kit", ··· 26 26 "files": [ 27 27 "dist", 28 28 "!dist/**/*.test.*", 29 - "!dist/**/*.spec.*" 29 + "!dist/**/*.spec.*", 30 + "src/lib", 31 + "!src/lib/**/*.test.*", 32 + "!src/lib/**/*.spec.*" 30 33 ], 31 34 "sideEffects": [ 32 35 "**/*.css"
+5 -1
src/lib/cli.ts
··· 9 9 import AdmZip from 'adm-zip'; 10 10 import { spinner, log } from '@clack/prompts'; 11 11 import { Command } from 'commander'; 12 - import { version } from '../../package.json' with { type: 'json' }; 12 + 13 + // @ts-expect-error - this works when used as a package (cause it will be moved to dist/cli.js) 14 + import { version } from '../package.json' with { type: 'json' }; 15 + // in dev hardcode the version instead 16 + // const version = '0.0.25'; 13 17 14 18 const program = new Command(); 15 19