zepio/__tests__/setup/assetTransformer.js

10 lines
170 B
JavaScript

// @flow
const path = require('path');
module.exports = {
process(filename: any) {
return `module.exports = ${JSON.stringify(path.basename(filename))};`;
},
};