zepio/__tests__/setup/assetTransformer.js

10 lines
170 B
JavaScript
Raw Normal View History

2019-02-04 20:41:45 -08:00
// @flow
const path = require('path');
module.exports = {
2019-02-04 20:41:45 -08:00
process(filename: any) {
return `module.exports = ${JSON.stringify(path.basename(filename))};`;
},
2019-02-04 20:41:45 -08:00
};