-
-
Save agreen757/51fbd6b479f5018b9c42 to your computer and use it in GitHub Desktop.
Small Grunt task to compile jade - use in conjunction with watch.
This file contains 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('boxy', function(){ | |
grunt.util.spawn({ | |
cmd: 'jade', | |
args: ['public/app/main/main.jade', '--out public/app/main/'] | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment