Created
September 25, 2014 10:15
-
-
Save quis/efbac0338930efece675 to your computer and use it in GitHub Desktop.
Prototype Gruntfile snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grunt.registerTask('production', [ | |
'copy:govuk_template', | |
'copy:govuk_frontend_toolkit', | |
'copy:assets_js', | |
'copy:toolkit_js', | |
'bower', | |
'convert_template', | |
'copy:govuk_frontend_toolkit', | |
'replace', | |
'sass', | |
'combine' | |
]); | |
grunt.registerTask('default', [ | |
'production', | |
'concurrent:target' | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment