hypercurrent-commerce-engine
v0.0.63
Published
1. To use npm, first ensure you have an npm account on [npm.js](https://www.npmjs.com/). 2. Then run `npm login` on a terminal. 3. Update the author and name fields in package.json. The name will define the package name on npm that people can use to insta
Readme
Building & publishing to npm
- To use npm, first ensure you have an npm account on npm.js.
- Then run
npm loginon a terminal. - Update the author and name fields in package.json. The name will define the package name on npm that people can use to install it.
- Run
npm run build. This will build the app into a dist folder. - Update the version in package.json or by running
npm version <major | minor | patch>. - Next run
npm publishto publish up to npm. If you have a paid account you can publish a private package but if it will be public then the flag --access is required.
Now the package is published anyone can install it using npm install <name of package>.
