【求助】如何在 QuickAdd Macro 脚本中调用另一个用户脚本模块?

比如下面 script.jscommon.js 在同一目录下。

const Tool = require('common.js');
module.exports = async (params) => {
    console.log(Tool.getMonth());
};
module.exports = {
    getMonth: function (date) {
        if (!date) date = new Date();

        const month = date.getMonth() + 1;
        if (month < 10) return '0' + month;
        return month;
    }
};

使用 Quickadd 运行脚本 script.js 后会报错:

电脑装node了,加 ./也没用