Permalink
Please sign in to comment.
4
Gruntfile.js
| @@ -1,5 +1,7 @@ | ||
| require('babel/register'); | ||
| +// Need to `require` a separate Grunt file so we can use ES6 syntax via | ||
| +// Babel's require hook. | ||
| module.exports = function(grunt) { | ||
| - require('./grunt.js')(grunt); | ||
| + require('./build/grunt.js')(grunt); | ||
| }; |
0
grunt.js → build/grunt.js
File renamed without changes.
0 comments on commit
e121428