@nizza/highlight-products
v0.1.1-beta.0
Published
The `highlight-products` library manages all processes related to the functionality to highlight products
Readme
Highlight Products
The highlight-products library manages all processes related to the functionality to highlight products
Versioning
Manage library versioning using the @jscutlery/semver tool, which automates semantic versioning based on your git history:
pnpm nx run highlight-products:versionFor more details, refer to the official SemVer documentation.
Publishing
Publish the library, automatically applying the appropriate tag based on the target environment:
- For feature branches (alpha release):
pnpm nx run highlight-products:publish:feat - For development (beta release):
pnpm nx run highlight-products:publish:dev - For production releases (stable release):
pnpm nx run highlight-products:publish:prod
Building
Build the library, specifying the target environment and targeting ES2019:
- For development environment:
pnpm nx run highlight-products:build:dev - For production:
pnpm nx run highlight-products:build:prod
Cleaning
Clean up build artifacts to maintain a tidy workspace:
pnpm nx run highlight-products:cleanTesting
Run unit tests for the library:
pnpm nx run highlight-products:testLinting
Lint the project to ensure code quality and adherence to standards:
pnpm nx run highlight-products:lint