This assumes you have a working setup.
Instructions for publishing the latest NPM package
Since this work is released on NPM on https://www.npmjs.com/package/@2sic.com/dnn-sxc-angular, this is how you should work once a new release is ready:
- Navigate to 
[2sxc-ui Path]/projects/dnn-sxc-angular 
- Update the version number in the package.json - node 
version. 
- Run 
npm run build to rebuild -> you should see files in the dist folder being replaced 
- Check-in and make sure you are on master branch; if not, merge.
 
- Make sure you are logged into npm (you can do this by running 
npm whoami), if you are not logged in, use npm adduser to create a user or npm login to log in with your credentials. 
- Navigate to 
dist/dnn-sxc-angular 
- First do a dry-run to see if everything works using 
npm publish --dry-run.  
- You can also do a beta-publish which won't be publicly shown
- Make sure the version is something like 
11.01.00-beta.1 (with -xyz.#) 
- then 
npm publish --tag beta. 
 
- In that folder, run 
npm publish - you will shortly receive an email which confirms the publication. 
Note that this will only work if you have an npm-account with the correct permissions, mapped to this project.