grunt-contrib-copy-only-newer
v0.1.5
Published
A grunt-contrib-copy filter that allows copying files, only if the source is newer.
Downloads
3
Readme
grunt-contrib-copy-only-newer
Description
This module offers a function that allows configuring the grunt-contrib-copy task.
Usage
module.exports = function(grunt) {
var onlyNewer = require('grunt-contrib-copy-only-newer')
.onlyNewerBuilder(grunt);
// configuration for the plugins.
grunt.initConfig({
copy: {
dist : {
files: [
{
expand: true,
cwd: 'src/',
src: ['**'],
dest: 'dest/',
filter: onlyNewer("copy:dist") }
]
}
}
});
// following grunt configuration.
};