@bss-praha/gastro-kiosk-themes
v1.0.155
Published
Client themes for gastro-kiosk projects
Readme
🧩 gastro-kiosk-themes
A collection of client themes (in JSON format) for Gastro Kiosk projects.
This package allows consistent theme management across multiple frontend applications.
📦 Installation
From npm (recommended):
npm install @bss-praha/gastro-kiosk-themes🔧 Usage
In your JS file:
import { defaultTheme } from '@bss-praha/gastro-kiosk-themes';✍️ Contributing
To add a new theme:
1. Create a new JSON file inside the themes/ directory.
2. Add an export to index.js.
3. Validate your JSON (e.g., using jsonlint.com).
🚀 Publishing a New Version
1. Make your changes (e.g., update JSON files)
2. Commit and push:
git add .
git commit -m "Message"
git push3. Bump the version and publish:
npm run releaseOR:
npm version patch # or minor / major
npm publish --access publicHOT Release:
npm run hot-release