dev.js 201 B

123456789
  1. /**
  2. * Simple development build to be run with grunt watch.
  3. */
  4. module.exports = function (grunt) {
  5. grunt.registerTask('dev', function () {
  6. require('../shared-build')(grunt, this.async())
  7. })
  8. }