Skip to content

Instantly share code, notes, and snippets.

@nchristus
Created May 2, 2017 15:11
Show Gist options
  • Save nchristus/3fc437efa5db10b94fa27b46618170bd to your computer and use it in GitHub Desktop.
Save nchristus/3fc437efa5db10b94fa27b46618170bd to your computer and use it in GitHub Desktop.
Grunt global variable
grunt.registerTask('build', 'Build specified email template.', function(template) {
if (template == null) {
grunt.warn('Template must be specified, like build:simple.');
}
global.template = template;
grunt.task.run('email');
});
// Variable
<%= global.template %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment