I recently installed a library via npm and made some modifications to one of the modules.
python.js
If I delete the node_modules folder and run npm install, I am concerned that I will lose my changes. Is there a way to preserve these modifications by moving the module elsewhere?
Currently, I import it using the following code:
import 'brace/mode/phython';
If I were to move my customized version of phython.js
into the assets folder...
How would I go about importing it?