0.0.1 • Published 6 years ago
@codewell/create-mapper v0.0.1
@codewell/create-mapper-js
Installation
npm install @codewell/create-mapperBasic Usage
import createMapper from '@codewell/create-mapper';
// Create a mapping function
const mapper = createMapper((element) => {
// Do something each element
return element + 1;
})
// Use the mapper
mapper([1, 2, 3]) // => [2, 3, 4]Testing
Functions
Write tests in the tests/ folder
Package
1. Make a dry reslease with npm run dry-release. This will generate a file packagename-x.x.x.tgz.
2. Install the package in your other application/package by running npm install path/to/packagename-x.x.x.tgz.
3. Import and use as usual in you application/package.
Releasing
- Run
npm run release - Push the code to github
- Update package version
npm version patchupdatesx.x.1->x.x.2npm version minorupdatesx.1.x->x.2.xnpm version majorupdates1.x.x->2.x.x
- Run
npm publish --access public
Issues
Please help by posting issues here on github
0.0.1
6 years ago