You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently this plugin issues command to run haml commands corresponding to all haml files at once. This causes my server to crash when I run grunt-haml while deploying.
At one point I noted that there were more than 60 simultaneous haml processes.
It would be good, if we could run these processes sequentially or cap the number of processes being run simultaneously.
PS: I am using haml gem, i.e. ruby haml.
The text was updated successfully, but these errors were encountered:
Looked around a bit, and found that there is an async plugin in grunt, which has functions like series which can be used instead of async.forEach(this.files, function(file, callback) {...
on line 55
thanks for that default suggestion. Slightly new to grunt so didn't know we could access number of cores.
Will submit a PR. Although I am new to grunt, so might not be written well.
Currently this plugin issues command to run haml commands corresponding to all haml files at once. This causes my server to crash when I run grunt-haml while deploying.
At one point I noted that there were more than 60 simultaneous haml processes.
It would be good, if we could run these processes sequentially or cap the number of processes being run simultaneously.
PS: I am using haml gem, i.e. ruby haml.
The text was updated successfully, but these errors were encountered: