You've already forked android-client
mirror of
https://github.com/netbirdio/android-client.git
synced 2026-05-22 17:10:49 -07:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
process(sourceText, sourcePath, options) {
|
|
return {
|
|
code: `module.exports = ${JSON.stringify(path.basename(sourcePath))};`,
|
|
};
|
|
},
|
|
}; |