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.

1234567891011121314151617181920212223242526
  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/luticateutils.js',
  11. 'src/*.js',
  12. 'src/modals/*.js',
  13. 'src/directives/*.js'
  14. ]
  15. }
  16. }
  17. }
  18. });
  19. grunt.loadNpmTasks('grunt-contrib-uglify');
  20. grunt.registerTask('default', ['uglify']);
  21. };