I have an Angular 4 application. I installed an external library using,
npm install some-library --save
I then had to made changes to that library to get it to work the way I needed it. This all works fine now.
My question is, How do I keep a local copy of this library in my project? Do I just remove it from node_modules? I don't want to loose my changes if I have to do a reinstall of the dependencies.
Thanks, Bill