mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-22 00:33:35 -05:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
process (src, filename) {
|
|
return `module.exports=${JSON.stringify(path.basename(filename))};`;
|
|
},
|
|
};
|