HOME


sh-3ll 1.0
DIR:/proc/self/cwd/assets/backend/plugins/chartist-plugin-tooltip-master/tasks/
Upload File :
Current File : //proc/self/cwd/assets/backend/plugins/chartist-plugin-tooltip-master/tasks/copy.js
/**
 * copy
 * ====
 *
 * Copies remaining files to places other tasks can use.
 *
 * Link: https://github.com/gruntjs/grunt-contrib-copy
 */

'use strict';

module.exports = function (grunt) {
  return {
    dist: {
      files: [
        {
          dest: '<%= pkg.config.dist %>/',
          src: 'LICENSE'
        },
        {
          cwd: '<%= pkg.config.src %>',
          expand: true,
          flatten: true,
          filter: 'isFile',
          dest: '<%= pkg.config.dist %>/',
          src: 'css/**',
        }
      ]
    }
  };
};