Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
module.exports = function(grunt) {
2
  return {
3
    options: {
4
      banner: '/*\n' +
5
        ' * International Telephone Input v<%= package.version %>\n' +
6
        ' * <%= package.repository.url %>\n' +
7
        ' * Licensed under the MIT license\n' +
8
        ' */\n',
9
      screwIE8: false
10
    },
11
    dev: {
12
      options: {
13
        beautify: true,
14
        compress: false,
15
        mangle: false,
16
        preserveComments: true
17
      },
18
      files: {
19
        'build/js/intlTelInput.js': 'tmp/wrapped.js',
20
        'build/js/intlTelInput-jquery.js': 'tmp/wrapped-jquery.js',
21
        'build/js/data.js': 'tmp/data.js',
22
      }
23
    },
24
    prod: {
25
      files: {
26
        'tmp/wrapped.min.js': 'tmp/wrapped.js',
27
        'tmp/wrapped-jquery.min.js': 'tmp/wrapped-jquery.js',
28
        'build/js/data.min.js': 'tmp/data.js',
29
      }
30
    },
31
  };
32
};