I made some custom modifications in the ngx-mask package and need to test it locally.
How to overwrite the installed npm package?
Currently the package is declared as a dependency in packages.json file as:
"ngx-mask": "^7.8.9"
I do prefer not to fork the original package and not to use github for this, if possible.
If you have made these changes on your machine. (I'm assuming you have)
Run a build
of the ngx-mask
package that you changed.
run npm pack
from that package's root folder. This creates a .tgz
zip file of your package with your custom modifications.
copy that file into the root (you could put it wherever but root makes things easy) of your project.
in your package.json
replace the version number ngx mask to the following "ngx-mask": "file:my-packed-file.tgz"
Run an npm install
using your new package.json
you should have your modified copy loaded in as a dependency in node_modules
.
In your test repo (where you use the ngx-mask package) run:
npm link /path/to/your/locally/modified/ngx-mask/package
This will install your locally modified ngx-mask into your test repo.
When you are done testing your local version of the ngx-mask package, you can simply unlink it. To unlink the local version of ngx-mask, in your test repo run:
npm unlink --no-save /path/to/your/locally/modified/ngx-mask/package
If you want to re-install the registry version of the ngx-mask package run:
npm install
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With