PromucFlow_constructor/app/client/packages/design-system/ads/fileTransformer.js

8 lines
182 B
JavaScript
Raw Normal View History

2024-07-29 13:23:26 +00:00
const path = require("path");
module.exports = {
process(src, filename, config, options) {
return "module.exports = " + JSON.stringify(path.basename(filename)) + ";";
},
};