@ttt-productions/ui-core
v0.2.22
Published
Shared UI components for TTT Productions projects
Maintainers
Readme
TTT Packages
Shared packages for TTT Productions and Q-Sports projects.
Packages
@ttt/ui-core- Shared UI components (shadcn-based)
Development
# Install dependencies
npm install
# Build all packages
npm run build
# Clean build artifacts
npm run clean
# Type check
npm run typecheckPublishing
Packages are automatically published to npm when you push a version tag:
# Update package version(s)
cd packages/ui-core
npm version patch # or minor, major
# Commit and tag
git add .
git commit -m "Release v1.0.1"
git tag v1.0.1
git push origin main --tagsUsage in TTT Productions
npm install @ttt/ui-coreimport { Button } from '@ttt/ui-core';
export default function MyComponent() {
return <Button>Click me</Button>;
}