-
Notifications
You must be signed in to change notification settings - Fork 73
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
Calling devtools
is blocking further tasks execution
#27
Comments
Thanks for filing the issue. Let me experiment with this. |
This caused by that line of code:
What is need to be done is:
And call Like this:
This works great for me, no blocking anymore. But, the above code is running out of WebSocket server callback function, which is not really a problem, but still it would be better to call |
Is this still an active issue? I tried using grunt-bg-shell to wrap the devtools task, as an alternative approach, but the chrome extension never detects it . . . only when I run it directly. So having this work in conjunction with watch would be nice. |
Calling
devtools
task will block execution of any other tasks, if presented.open
andwatch
tasks will never run.Running globally installed task in another tab in the console is kinda ok, but having the task automatically installed locally and being executed among others with
grunt serve
is a much more better approach.The text was updated successfully, but these errors were encountered: