Updating a package version should not be a big deal. There are three basic steps:
- change the package version in its
package.json
- run
npm publish
- commit the change and push to origin master.
When you update a dependency of launchpad like the client adapters there are a couple more steps.
- update the dependency version and publish it to NPM
- update Launchpad's version and the version of the dependency
- run
yarn
to update the lockfile - publish the new launchpad version to npm
- commit the changes and push to master