fix: post process file error

This commit is contained in:
春希 2020-03-31 21:45:47 +08:00
parent 4a53faac85
commit 389eaf7104

View File

@ -57,7 +57,7 @@ export function createModuleBuilder(
content = processer(content, type); content = processer(content, type);
}); });
return new ResultFile(content, type, file.name); return new ResultFile(file.name, type, content);
}); });
} }