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
/** * Watches for changes. */publicfunctionwatch() {
$this->taskWatch()->monitor( array( 'css/variables.less', 'css/laps.less' ), function () {
$this->less();
} )->run();
}
It names both files correctly when started:
c:\server\www\dev\wp-content\plugins\laps>robo watch
[Robo\Task\WatchTask] watching css/variables.less for changes...
[Robo\Task\WatchTask] watching css/laps.less for changes...
But only last file is tracked, changes to first file do not trigger task. If I reverse order of files in array it flips and again — only last file in array is tracked, other one is ignored.
Win7x64, PHP 5.5
PS ok, now I am not sure if this is even supposed to work?.. :) For some reason I was under impression it is.
The text was updated successfully, but these errors were encountered:
This is my
watch
task:It names both files correctly when started:
But only last file is tracked, changes to first file do not trigger task. If I reverse order of files in array it flips and again — only last file in array is tracked, other one is ignored.
Win7x64, PHP 5.5
PS ok, now I am not sure if this is even supposed to work?.. :) For some reason I was under impression it is.
The text was updated successfully, but these errors were encountered: