Update how modules are deployed #13
Loading…
Reference in a new issue
No description provided.
Delete branch "modules"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
From last deployment, I discovered that you can not loop with
npm install --no-save --legacy-peer-deps ep_whatever
like we used to do, because it removes every other installed modules for some reason. So you have to do all at once likenpm install --no-save --legacy-peer-deps ep_whatever ep_whatever1 ep_whatever2 ep_whatever3
.This fixes this.