build-workflow
Advanced tools
Changelog
v2.1.0
Add a watch suffix for bundler tasks targets - 0c9bba3, royriojas, 26/03/2015 01:45:28
In order to be consistent, and to provide a better api, bundler targets now
won't use the grunt.option('watch-task')
to especify which task to
be run in watch mode. Instead now they can be called from the command line
like this:
grunt bundler:target:watch # the watch suffix will run this task in watch mode
Changelog
v2.0.8
Honor the --skip-cache
flag and provide consistent output - 58d33f9, royriojas, 26/03/2015 00:59:11
Running the tasks with
grunt check-valid --skip-cache=true
Will now delete the cache files. Subsequent calls to this task without that flag will use a new cache file. This is useful when a configuration file has changed and we want to destroy the cache that was created when using the previous configuration, since the files didn't change, the tasks would assume they are OK.
TODO: Store the configuration as well as part of the cache, that way if the config change the task will destroy
the cache automatically and create a new one for the next executions without actually having to use the --skip-cache
flag. Fix <a target="_blank" class="info-link" href="https://github.com/royriojas/build-workflow/issues/5"><span>#5</span></a>
Also in this commit. Normalized the output of the checkvalid tasks. Fix <a target="_blank" class="info-link" href="https://github.com/royriojas/build-workflow/issues/6"><span>#6</span></a>