basil.js 个脚本需要几分钟 运行

basil.js scripts taking minutes to run

我正在尝试使用 basil.js 创建 InDesign 脚本,但脚本在 运行 之前需要几分钟。 InDesign 只是同时冻结。其他 JS 示例(不使用罗勒)工作正常。我使用的是 InDesign 2021 和 MacOS Big Sur 11.2。可能是这样吗?恐怕,对我来说,解决方案不能降级。还有其他想法吗?

非常感谢,丹尼尔

#includepath
"Users/danifslopes/Documents";
#include
"basiljs/bundle/basil.js";

function draw() {
    b.doc(); //with or without, the same result (I have a page opened)
    b.text("hello", 100, 100, 200, 200);
}

b.go();

我按照 github.com/trych/MuTypo 中的说明使用了新版本的 basil,它似乎运行良好。另外,这个版本似乎更简单实用了。

非常感谢,mdomino 和 fabianmoronzirfas。