lm-machines-frontend-components
v1.0.9
Published
frontend UI components for lm machines
Downloads
2
Readme
lm-machines-frontend-components
A library of UI frontend components for lm-machines-frontend-components
. Built to provide reusable and customizable components for the project.
Installation
To install the package:
npm install lm-machines-frontend-components
Usage
Import the components in your project:
To install the package:
import { YourComponent } from 'lm-machines-frontend-components';
function App() {
return <YourComponent />;
}
##Releasing a New Version
This project uses semantic-release to automatically handle versioning and publishing to npm.
Steps to Release:
Make sure your commit messages follow the Conventional Commits format:
fix: for a bug fix (patch release).
feat: for new features (minor release).
feat!: or BREAKING CHANGE: for major changes (major release).
After committing, push changes to the main branch.
The release will automatically be handled by GitHub Actions, updating the version, creating a tag, and publishing the new version to npm.