npm build package locally
/*
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.
navigate to the dist / whatever your compiled output folder is.
run npm pack inside that 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.
*/
/*
So I'm assuming that you've cloned the ngx-mask package. If you see inside it's package.json then it has no build script. Instead it is "build:library": "ng-packagr -p package.json" Try npm run build:library when you're in that project's root :)
*/