HOME


sh-3ll 1.0
DIR:/proc/self/root/proc/self/cwd/assets/backend/plugins/chartist-plugin-tooltip-master/tasks/
Upload File :
Current File : //proc/self/root/proc/self/cwd/assets/backend/plugins/chartist-plugin-tooltip-master/tasks/umd.js
/**
 * umd
 * ===
 *
 * Wraps the library into an universal module definition (AMD + CommonJS + Global).
 *
 * Link: https://github.com/bebraw/grunt-umd
 */

'use strict';

module.exports = function (grunt) {
  return {
    dist: {
      src: '<%= pkg.config.src %>/scripts/<%= pkg.config.src_name %>.js',
      dest: '<%= pkg.config.dist %>/<%= pkg.config.src_name %>.js',
      objectToExport: 'Chartist.plugins.tooltips',
      deps: {
        default: ['Chartist'],
        amd: ['chartist'],
        cjs: ['chartist'],
        global: ['Chartist']
      },
      indent: '  '
    }
  };
};