1.6.4 • Published 10 months ago
html2pdf-merge-encrypt v1.6.4
Welcome to iCover npm package !!!
Steps to test the file:
- The library package code is stored at
src
- To build the package module:-
npm run build
. - The build artifacts will be stored in the
dist/
directory. - Use the built artifacts for testing the changes.
Steps to run the demo / example:
- example for using the package is stored in src directory.
- First build the library module:-
npm run build
. - Use the command -
tsc example/ts-test.ts
to see the demo working of the package. - Additionally we can directly use the command
npm run test
to see the demo working of the package. - Navigate to
example/output/
directory to get the desired output.
Steps to follow before pushing to production:
- Before publishing the package, update the version in package.json of
projects/pdf-wrapper
: - Increment the version number (X.X.X - major.minor.patch) by 1 (e.g. X.X.1 -> X.X.2 for patch update).
{
"name": "@vijay_icoverinsure/pdf-wrapper",
"version": "X.X.X",
//...
}