0.4.5 • Published 11 months ago
mc-react-library v0.4.5
Materials Cloud React component library
React component library used in Materials Cloud, built with vite and bootstrap.
Install via
npm install mc-react-libraryNote: make sure all peerDependencies (defined in package.json) are installed in the host application!
And use with
import {
DoiBadge,
HelpButton,
McloudSpinner,
...
} from "mc-react-library";Note: see usage examples of each component in the demo page.
Project structure:
lib\- contains the React components of the library.src\- contains a demo page that renders the components for development.
Development
Using the demo page
For developing the library of components, start the demo page (in src\) by
npm install
npm run devand update the components in lib\.
Building and testing locally
To build the library and test it locally in an external application (before publishing to npm), use
npm run build
npm packwhich will create a .tgz file that can then be installed by the external application via
npm install /path/to/mc-react-library-x.y.z.tgzPublishing a new version
To make a new version and publish to npm via GitHub Actions:
npm version <major/minor/patch>
git push --follow-tags