Currently, I am in the process of developing a VueJS web application. Within this project, there is a module that utilizes a wrapper for a JavaScript library obtained through npm and designed to seamlessly integrate with VueJS. However, it doesn't completely meet our requirements, so the plan is to fork it and make some adjustments.
Within the repository, there are two main folders: src and dist.
From my understanding, src contains the actual source code while dist houses a minified version intended for distribution purposes. This leads me to several questions:
- When it comes to editing the module, how should I approach the contents of /dist? Is it necessary to delete it?
- Regarding components installed via npm, do they rely on the /src/ version or the /dist/ one?
- If I choose to remove /dist, focus on modifying the /src code, how can I recreate /dist using the updated /src files?
Your guidance on these matters would be greatly appreciated.