使用 codemod 运行时,Babel 插件 addComment 不起作用

问题描述

我创建了一个 babel 插件

    module.exports = function (babel) {
        const { types: t } = babel;
        return {
            name: 'addComment',visitor: {
                Program(path,state) {
                    path.addComment('leading','@@@ My precIoUs @@@');
                    path.unshiftContainer('body',t.noop());
                }
            }
        };
    }

我希望它应该在模块顶部添加一个注释行 // @@@ My precIoUs @@@,并在注释后添加一个空行。

我用@codemod/cli 运行了这个插件

./node_modules/.bin/codemod --plugin ./babel-plugin.js ./transform-me.js

我在源文件中只插入了一个空行,没有注释行。 如果我在 astexplorer.net 中尝试相同的代码,它工作正常。

我尝试添加带有 "comments": true 选项的 .babelrc 文件,并使用 --find-babel-config 参数运行 codemod。同样的结果。

我做错了什么?

解决方法

我找到了一个决定。如果我直接操作注释数组,则插入注释:

function addComment(path,comment) {
    const rootNode = path.node.body[0];
    if (!rootNode.comments) {
      rootNode.comments = [];
    }

    rootNode.comments.push({
        leading: true,trailing: false,value: comment,type: 'CommentLine'
    });
}
path.addComment('leading','my comment') -> addComment(path,'my comment')