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.

Gruntfile.js 476B

123456789101112131415161718192021222324
  1. /**
  2. * Created by robin on 11/10/15.
  3. */
  4. module.exports = function(grunt) {
  5. grunt.initConfig({
  6. uglify: {
  7. demo: {
  8. files: {
  9. 'dist/luticate-utils.min.js': [
  10. 'src/luticate2-utils.js',
  11. 'src/**/*.js'
  12. ]
  13. }
  14. }
  15. }
  16. });
  17. grunt.loadNpmTasks('grunt-contrib-uglify');
  18. grunt.registerTask('default', ['uglify']);
  19. };