繁体   English   中英

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

[英]Babel plugin addComment doesn't work when ran with codemod

我创建了一个 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')

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM