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 525B

12345678910111213141516171819202122232425
  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-auth.min.js': [
  10. 'src/luticateauth.js',
  11. 'src/DataAccess/*.js',
  12. 'src/Business/*.js'
  13. ]
  14. }
  15. }
  16. }
  17. });
  18. grunt.loadNpmTasks('grunt-contrib-uglify');
  19. grunt.registerTask('default', ['uglify']);
  20. };