From 4730cf82e82e19561ed7fa4a92a613635450a33d Mon Sep 17 00:00:00 2001 From: Omar Al-Ithawi Date: Fri, 2 Feb 2024 18:30:26 +0300 Subject: [PATCH] feat: tutor-mfe compatiblilty for `atlas pull` | FC-0012 (#280) - install atlas - remove `--filter` to pull all languages by default - use ATLAS_OPTIONS to allow custom `--filter` - include frontend-platform in `atlas pull` Refs: FC-0012 OEP-58 --- Makefile | 5 +++-- package-lock.json | 9 +++++++++ package.json | 1 + 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f6b158a8..2a631422 100755 --- a/Makefile +++ b/Makefile @@ -63,12 +63,13 @@ pull_translations: rm -rf src/i18n/messages mkdir src/i18n/messages cd src/i18n/messages \ - && atlas pull --filter=$(transifex_langs) \ + && atlas pull $(ATLAS_OPTIONS) \ + translations/frontend-platform/src/i18n/messages:frontend-platform \ translations/paragon/src/i18n/messages:paragon \ translations/frontend-component-footer/src/i18n/messages:frontend-component-footer \ translations/frontend-app-learner-dashboard/src/i18n/messages:frontend-app-learner-dashboard - $(intl_imports) paragon frontend-component-footer frontend-app-learner-dashboard + $(intl_imports) frontend-platform paragon frontend-component-footer frontend-app-learner-dashboard endif # This target is used by CI. diff --git a/package-lock.json b/package-lock.json index 23e8c504..bbf882b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,6 +14,7 @@ "@edx/frontend-component-footer": "^12.2.1", "@edx/frontend-enterprise-hotjar": "^2.0.0", "@edx/frontend-platform": "^5.5.4", + "@edx/openedx-atlas": "^0.6.0", "@edx/paragon": "^20.44.0", "@edx/react-unit-test-utils": "1.7.1", "@fortawesome/fontawesome-svg-core": "^1.2.36", @@ -2601,6 +2602,14 @@ "@newrelic/publish-sourcemap": "^5.0.1" } }, + "node_modules/@edx/openedx-atlas": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@edx/openedx-atlas/-/openedx-atlas-0.6.0.tgz", + "integrity": "sha512-wZO7hA4VJ/bXjaQNNR7KXGYyTCNs1mBJd3HwQK2EmOwFZYFNX6nzSAm9S7HCfi/kb1PCRpmp3wJt+v/Eu9BEQg==", + "bin": { + "atlas": "atlas" + } + }, "node_modules/@edx/paragon": { "version": "20.46.2", "resolved": "https://registry.npmjs.org/@edx/paragon/-/paragon-20.46.2.tgz", diff --git a/package.json b/package.json index e2bbb1e0..a3ad2748 100755 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "@edx/frontend-component-footer": "^12.2.1", "@edx/frontend-enterprise-hotjar": "^2.0.0", "@edx/frontend-platform": "^5.5.4", + "@edx/openedx-atlas": "^0.6.0", "@edx/paragon": "^20.44.0", "@edx/react-unit-test-utils": "1.7.1", "@fortawesome/fontawesome-svg-core": "^1.2.36",