grunt-contrib-copy icon indicating copy to clipboard operation
grunt-contrib-copy copied to clipboard

Copy files and folders.

Results 60 grunt-contrib-copy issues
Sort by recently updated
recently updated
newest added

Given a configuration: ``` copy: { externalCss: { expand: true, src: 'node_modules/some_module/css/*.css', dest: 'web/views' } } ``` When running with `grunt copy:externalCss --no-write` Gives the following: ``` Warning: ENOENT: no...

These options are never really explained in the docs: - cwd - flatten - expand Which leads to a series of brute force attempts to configure the plugin to work...

Not work, if in path folder hide folder, exsample: ".default" - default not copy. page1--page2--.default--file1 result: page1--page2 :(

All I am trying to do is copy a text file from a "from" folder to "test-grunt-target-2" folder. It was working fine, but now it seems taking for ever. I...

Enabling _flatten_ does nothing when _expand_ is disabled Tested with the following settings ``` { copy: { css: { expand: false, flatten: true, src: [ 'bower_components/normalize-css/normalize.css' ], dest: 'source/css/vendor/' }...

I've tried to copy a .css file `bower_components/components-font-awesome/css/font-awesome.min.css` into a target directory like this: module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), uglify: { options: { banner: '/*!...

I'm trying to copy a set of files from a subfolder of the project to the root of the project, with no luck. I tried to set the `dest` attribute...

I saw the other bugs regarding corruption of images etc.. when copied over with a process, the solution to use noProcess is fine for these cases, but not satisfactory for...

Install task, added configuration file ``` copy: { js: { expand: true, files: [ { src: 'public/build/main.js', rename: function (dest, src) { return dest; } } ] }, css: {...

I have a salesforce project that is using their "lightning" design system (ugh, I know). They have an node package which is great. However, when installed, in node_modules it gets...