You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
419 B

  1. 'use strict';
  2. module.exports = function (grunt, options) {
  3. return {
  4. options: {
  5. sourceMap: false,
  6. compact: false,
  7. presets: ['es2015']
  8. },
  9. dist: {
  10. files: [{
  11. expand: true,
  12. cwd: 'src',
  13. src: ['**/*.js'],
  14. dest: 'dist/src',
  15. ext: '.js'
  16. }]
  17. }
  18. };
  19. };