-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the latest patch release prevents jit-grunt from working #159
Comments
looking into this a bit further, even downgrading to the previous patch does not seem to get please let me know what other information from me would be helpful. |
Hi @travi, |
here is the timing of the run w/o
i should have thought to include these links originally, but at least a few of the projects where i see the issue are public. https://github.com/travi/travi.org-admin is the specific one that i'm referring to above and is probably the simplest. for the time being, i am forcefully setting the environment used in the webpack config because of the fact that it is you can see this by adding a |
Things have seemed a bit off for a while, but I finally took the time to dig in and realized that
jit-grunt
was no longer being used, even though my working config had not changed in several of my projects.My projects still load
load-grunt-config
as:With
0.19.2
, my build output shows that all tasks are being loaded up-front:If I downgrade to
0.19.1
,jit-grunt
appears to be used again, resulting in tasks loading more separately:The important part of this issue is that some of my tasks depend on
grunt-env
to configure environment variables before tasks are executed. When all tasks are loaded up-front, some of them end up causing build failures because of premature parsing and execution.The text was updated successfully, but these errors were encountered: