create-ak-library
v1.0.2
Published
Application shows how to publish a npm package both in es5, es6 support at the same time.
Readme
create-library
application shows how to publish a npm package both in es5, es6 support at the same time.
create-simple-app
Best practices in publishing a npm package are
Safety Checks: git pull git status npm ci npm test
Prepare the Release: npm run build
Update the Changelog
Update the Version Number: npm version (includes commit, and git tag as well) Or by hand: Update version in package.json & package-lock.json git commit -am '2.0.0' git tag v2.0.0
Publish to npm: npm publish
Publish to Git: git push git push --tags
