Install required tooling:
$ npm installBuild the module during development:
$ npm run build:developThis generates output in the dist/ directory.
Build a version of the module for production:
$ npm run build:releaseNote that the build alias generates a production release by default:
$ npm run buildTo view a demo HTML page that displays the available icons:
$ npm run startNow you can visit the demo page at localhost:8080 (it should open in your browser automatically).
To run the unit tests:
$ npm run testNow you can visit the test page at localhost:8080 (it should open in your browser automatically).