We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16ad3a5 commit b72e1dfCopy full SHA for b72e1df
3 files changed
packages/rollup-plugin-gettext/Makefile
@@ -4,7 +4,7 @@ build:
4
npx tsc -p tsconfig.lib.json
5
6
test/mo:
7
- cd test && npm run compile-mo
+ cd test && $(MAKE) compile-mo
8
9
# for some reason vitest --typecheck doesn't actually fail when there are type
10
# errors for me, so I'm running tsc here as a workaround
packages/rollup-plugin-gettext/test/Makefile
@@ -0,0 +1,5 @@
1
+extract:
2
+ xgettext index.test.ts --language=javascript -o messages.pot
3
+
+compile-mo:
+ parallel msgfmt '{}' -o mo/'{/.}'.mo ':::' po/*.po
packages/rollup-plugin-gettext/test/package.json
0 commit comments