1.1.2 • Published 2 years ago
example-npm-lib-smallephant v1.1.2
example-npm-lib-smallephant
Example library published to npm.
Usage
npm install example-npm-lib-smallephant
add
import { add } from 'example-npm-lib-smallephant';
console.log(add(2, 3));
subtract
import { subtract } from 'example-npm-lib-smallephant';
console.log(subtract(10, 3));
multiply
import { multiply } from 'example-npm-lib-smallephant';
console.log(multiply(3, 1));
Publish to NPM
- Make code changes
- Update version via
npm version <major|minor|patch>
- Publish via
npm run publish