You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
478 B
22 lines
478 B
"use strict";
|
|
|
|
const fse = require('fs-extra');
|
|
|
|
module.exports = function (params, processor) {
|
|
return {
|
|
process: () => {
|
|
var sourceFilePath = processor.context.exported + "/" + params.filename;
|
|
|
|
processor.onInfo("Deleting " + sourceFilePath);
|
|
|
|
fse.remove(sourceFilePath, function(err) {
|
|
if (err) {
|
|
processor.onError("Unable to delete file: " + err);
|
|
} else {
|
|
processor.onInfo("Deleted file");
|
|
}
|
|
return processor.done();
|
|
});
|
|
}
|
|
};
|
|
};
|
|
|