0

HELP: yesterday I discovered why my Gradle build takes so fucking long every time, but I still don't know how to fix it. for some reason, it sees the node_modules folder as NEVER "up-to-date", and so every single time I run 'gradle war_exploded' it copies the entire node_modules folder into the war, even of nothing has changed. any ideas?

Comments
  • 1
    make it a symlink if in dev? or check if it is correctly a copy task (which should respect identical files automarivally)
  • 0
    @gitreflog it's the war task which I think is a copy task. I could try the symlink thing tomorrow
Add Comment