mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
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);
|
|
};
|