build(aio): copy content image assets

This commit is contained in:
Peter Bacon Darwin
2017-04-01 07:01:44 +01:00
committed by Pete Bacon Darwin
parent 08941aa0c7
commit dd4e3f8704
4 changed files with 55 additions and 3 deletions

View File

@ -0,0 +1,5 @@
const {cp} = require('shelljs');
module.exports = function copyFolder() {
return (from, to) => cp('-rf', from, to);
};