9945ce2259
This allows other processors who need to know about the copyContentAssets processors to ensure that the runs after the content has been copied.
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
const {copySync} = require('fs-extra');
|
|
|
|
module.exports = function copyFolder() {
|
|
return (from, to) => copySync(from, to);
|
|
};
|