To run the library locally and be able to see your changes without having to publish a new version use npm link
# install dependencies
npm install
# link package
npm link
# start the build with hot reload, great for testing components
npm run build:watch
# build the library, available under dist
npm run build
# run tests
npm run test