29 lines
608 B
JavaScript
29 lines
608 B
JavaScript
const defineHelper = require("../../../helpers/define-helper.cjs");
|
|
|
|
const dependency = defineHelper(__dirname, "dependency", `
|
|
export default function fn() {}
|
|
`);
|
|
|
|
const main = defineHelper(__dirname, "main", `
|
|
import dep from "${dependency}";
|
|
|
|
export default function helper() {
|
|
let x = dep;
|
|
return function (dep) {
|
|
return x() + dep;
|
|
}
|
|
}
|
|
`);
|
|
|
|
module.exports = function() {
|
|
return {
|
|
visitor: {
|
|
Identifier(path) {
|
|
if (path.node.name !== "REPLACE_ME") return;
|
|
const helper = this.addHelper(main);
|
|
path.replaceWith(helper);
|
|
},
|
|
},
|
|
};
|
|
};
|