Created
February 17, 2016 10:52
-
-
Save alexVauch/7c7147818891045fdf74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
copy: { | |
i18n: { | |
files: [ | |
{ | |
expand: true, | |
cwd: '/project_files', | |
src: '**/*.php', | |
dest: '/temp', | |
rename: (function () { | |
var index = 0; | |
return function (dest, src) { | |
return dest + index++; | |
} | |
}()) | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment