Michał Gołębiowski-Owczarek
Michał Gołębiowski-Owczarek
There's one problem with this proposal - it relies on the task configuration to have a specified format (i.e. that `jshint.all` has the list of files directly, without additional options,...
@rschmukler What if you changed your configuration to: ``` javascript grunt.initConfig({ jshint: { all: { src: ['app/**/*.js'], }, }, // ... }); ``` Would `grunt.config('jshint.all.files', changedFiles);` still work?
@ichernev `this.files` work only inside the task. We're here inside the watch task so we won't get to `jshint` `this.files` from here. That's exactly the problem.
@ichernev But this is not my task, I can't modify pre-defined imported tasks like `jshint` or `uglify`.
I confirm what @mik01aj says: I don't have all tasks to put in the list on the same target, I have sth like: ``` javascript grunt.initConfig({ karma: { backgroundUnit: {...
@shama Result is the same, I still see the content flash in the browser only after all unit tests finish executing.
@shama Hey, what's the progress on a fix? :)
I feel #127 shouldn't be closed now that users are not supposed to run from master but from a tagged commit. I use the following script: ``` bash #!/bin/sh set...
@reggi That message was correct, what was the problem? On the other hand, via your last command you updated to master, i.e. an unstable version that may just not work.