- Notifications
You must be signed in to change notification settings - Fork 59
Closed
Labels
Description
I was wondering why the deployment process always takes so long, and then I found out node_modules wasn't excluded. I tracked down where the issue resides, and here is the cause:
exoframe/src/commands/deploy.js
Line 186 in 0e4feb7
| const relativePath = name.replace(`${workdir}/`, ''); |
It only replaces the workdir followed by a
/, but on Windows it won't do anything because of the best feature Windows has to offer (\ in the path).