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

Nonull with src array

Open bluee opened this issue 9 years ago • 0 comments

nonull does not fail if src is an array of files

Example:

   copy: {
            main: {
                     nonull: true,
                     cwd: '../lib/', 
                     expand: true, 
                     src: csslibfiles, 
                     dest: '../publish/~buildcss', 
                     filter: 'isFile',
                     flatten: true 
            },
        }

bluee avatar Aug 28 '15 09:08 bluee