- Make a new branch
- Run
npm run hot
to start examples in watch hot module replacement mode - Open
http://localhost:5555
- Run
npm link
at Component root to make your local package linkable - Run
npm link @opuscapita/package-name
at project's dir that's using the component to use local package
- Run
npm run watch
to run dev builds in watch mode
- Run
npm unlink @opuscapita/package-name
at project's dir that's using the component
- Reset
docs
andlib
directories to master branch stategit checkout master -- docs/* lib/*
- Update
CHANGELOG.md
with your changes under the<next>
header - Make a pull request
- Use
master
branch - Add new version header to
CHANGELOG.md
and move everyting from<next>
there (leave next header empty) - Make sure
npm test
andnpm run lint
runs without errors
- Run
npm version [major|minor|patch]
Info
- Run
npm publish