All Downloads are FREE. Search and download functionalities are using the official Maven repository.

report-resources.chartist.chartist-plugin-tooltip.tasks.uglify.js Maven / Gradle / Ivy

/**
 * uglify
 * ======
 *
 * Minify the library.
 *
 * Link: https://github.com/gruntjs/grunt-contrib-uglify
 */

'use strict';

module.exports = function (grunt) {
  return {
    dist: {
      options: {
        banner: '<%= pkg.config.banner %>',
        sourceMap: true,
        sourceMapIncludeSources: true
      },
      files: {
        '<%= pkg.config.dist %>/<%= pkg.config.src_name %>.min.js': ['<%= pkg.config.dist %>/<%= pkg.config.src_name %>.js']
      }
    }
  };
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy