angular-gettext 库- 无法编译 JSON 文件?

angular-gettext library- fails to compile JSON files?

我正在使用 grunt-angular-gettext。

我正在尝试编译 PO 文件夹中的 PO 文件并输出不同文件夹中的 JSON 文件。未生成文件夹和 JSON 文件。 下面是编译的 grunt 配置:

nggettext_compile: {
            all: {
                options: {
                    format: "json"
                },
                files: [
                    {
                        expand: true,
                        cwd:"../",
                        src: ["po/*.po"],
                        dest: '../lang/',
                        ext: ".json"
                    }
                ]
            },
        },

任何人都可以帮助我进行配置以在 "lang" 文件夹中生成 JSON 文件。 "lang" 文件夹与 "po" 文件夹处于同一级别。 我如何指定目标文件夹的相对路径?

谢谢。

尝试

nggettext_compile: {
            all: {
                options: {
                    format: "json"
                },
                files: [
                    {
                        expand: true,
                        cwd:"[po-loc]",
                        src: ["*.po"],
                        dest: '[dest-loc]',
                        ext: ".json"
                    }
                ]
            },
        },

将 [po-loc] 更改为 po 所在的位置
并将 [dest-loc] 更改为您希望 JSON 文件所在的位置使用完整路径,因此没有 ../