@bgord/bun 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -53,7 +53,7 @@ export class PrerequisiteTranslations implements prereqs.Prerequisite {
|
|
|
53
53
|
try {
|
|
54
54
|
await fsp.access(translationsPath, constants.R_OK);
|
|
55
55
|
|
|
56
|
-
for (const language
|
|
56
|
+
for (const language of supportedLanguages) {
|
|
57
57
|
await fsp.access(i18n.getTranslationPathForLanguage(language).get(), constants.R_OK);
|
|
58
58
|
}
|
|
59
59
|
} catch (error) {
|