Combining Tasks With Grunt
I was recently asked to help out with a few build steps for a Drupal project using Grunt as its build system. The project’s Gruntfile.js
has a drush:make
task that utilizes the grunt-drush package to run Drush make. This task in included in a file under the tasks directory in the main repository.
tasks/drush.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
You can see that the task contains a few instances of variable interpolation, such as <%= config.srcPaths.make %>
. By convention, the values of these variables go in a file called Gruntconfig.json
and are set using the grunt.initConfig
method. In addition, the configuration for the default task lives in a file called Gruntfile.js
. I have put trimmed examples of each below.
Gruntfile.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
Gruntconfig.json
1 2 3 4 5 6 7 8 9 |
|
As you can see, the project’s Gruntfile.js
also has a clean:default
task to remove the built site and a mkdir:init
task to make the build/html directory, and the three tasks are combined with grunt.registerTask
to make the default task which will be run when you invoke grunt
with no arguments.
A small change
In Phase2’s build setup using Phing we have a task that will run drush make when the Makefile’s modified time is newer than the built site. This allows a user to invoke the build tool and only spend the time doing a drush make
if the Makefile has indeed changed.
The setup needed to do this in Phing is configured in XML: if an index.php file exists and it is newer than the Makefile, don’t run drush make
. Otherwise, delete the built site and run drush make
. The necessary configuration to do this in a Phing build.xml is below.
build.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
You’ll note that Phing also uses variable interpolation. The syntax, ${html}
, is similar to regular PHP string interpolation. By convention, parameters for a Phing build live in a build.properties
file.
A newer grunt
The grunt-newer plugin appears to be the proper way to handle this. It creates a new task prefixed with newer:
to any other defined tasks. If your task has a src
and dest
parameter, it will check that src
is newer than dest
before running the task.
In my first quick testing, I added a spurious src parameter to the drush:make
task and then invoked the newer:drush:make
task.
1 2 3 4 5 6 7 |
|
That modification worked properly in concert with grunt-newer
(and the drush
task from grunt-drush
task didn’t complain about the extra src
parameter,) but I still also needed to conditionally run the clean:default
and mkdir:init
only if the Makefile was newer than the built site.
Synchronized grunting
The answer turned out to be to create a composite task using grunt.registerTask
and grunt.task.run
that combined the three tasks existing tasks and then use the grunt-newer
version of that task. The solution looked much like the following.
tasks/drushmake.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
I could then invoke newer:drushmake:default
in my Gruntfile.js
and only delete and rebuild the site when there were changes to the Makefile.