just-scripts
Version:
Just Stack Scripts
17 lines • 717 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.copyInstructionsTask = void 0;
const executeCopyInstructions_1 = require("../copy/executeCopyInstructions");
/**
* This is an advanced copy task that allows more advanced usage beyond simple copies.
* It allows for copy renames. It takes in a config that can be generated dynamically with code at build time.
*
* @param config Copy instructions configuration
*/
function copyInstructionsTask(config) {
return function copyInstructions() {
return executeCopyInstructions_1.executeCopyInstructions(config);
};
}
exports.copyInstructionsTask = copyInstructionsTask;
//# sourceMappingURL=copyInstructionsTask.js.map