Open jln1989 opened 8 years ago
@jodavis any ideas?
@jln1989 How does your team run the Gulp task? Is it bound to an event in the Task Runner Explorer, or do you manually start it in the Task Runner Explorer?
@jodavis It is bound to after build event and it has been like that since RC1. I would like to know how do i trigger the gulp default task when any of the JS files is changed.
It used to happen before the VS update and its not happening now.
@jln1989 You can bind the watch
task to the Project Open event in TRX. That will start the watch
process right away, so that concatjs
and minjs
will run any time a file matching **/*.js
is changed on disk. (You don't want your default
task to run on every change, because that would start multiple watch
processes that would all respond to changes on disk simultaneously.)
I don't know how binding to After Build would have worked in prior releases, unless there was an early build that happened during project open.
Hi,
After installing the latest visual studio update, dot net core and .net core tool (preview 2), we are noticing that the GULP tasks are not running automatically. This is happening for a team of 65 people and we are finding it really difficult. Any help in this matter would be appreciated.
We did not change the gulp file in a while and we are having default task which looks into a watch. Please find the sample below.
It is working perfectly fine when runnign via CMD.