mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03: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))};`;
|
|
},
|
|
};
|