build_task.js 223 B

12345678910111213
  1. module.exports = function(grunt) {
  2. "use strict";
  3. // Concat and Minify the src directory into dist
  4. grunt.registerTask('build', [
  5. 'clean:release',
  6. 'clean:build',
  7. 'phantomjs',
  8. 'webpack:prod',
  9. ]);
  10. };