zepio/__tests__/setup/assetTransformer.js

7 lines
159 B
JavaScript
Raw Normal View History

const path = require('path');
module.exports = {
process(filename) {
return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';';
},
};