Skip to content

Commit

Permalink
fix: remove indigo-header and indigo-footer
Browse files Browse the repository at this point in the history
Remove indigo theme header and footer as their versions 1.x.x are incompatible with the MFEs master branches
  • Loading branch information
hinakhadim committed Mar 8, 2024
1 parent abaaef9 commit 9976abd
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tutorindigo/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ def _override_openedx_docker_image(
"mfe-dockerfile-post-npm-install-learning",
"""
RUN npm install '@edx/brand@npm:@edly-io/indigo-brand-openedx@^1.0.0'
RUN npm install '@edx/frontend-component-header@npm:@edly-io/indigo-frontend-component-header@^1.0.0'
RUN npm install '@edx/frontend-component-footer@npm:@edly-io/indigo-frontend-component-footer@^1.0.0'
""",
# remove indigo-header and indigo-footer due to incompatible version deps of MFEs
),
(
"mfe-dockerfile-post-npm-install-authn",
Expand All @@ -118,16 +117,15 @@ def _override_openedx_docker_image(
"mfe-dockerfile-post-npm-install-discussions",
"""
RUN npm install '@edx/brand@npm:@edly-io/indigo-brand-openedx@^1.0.0'
RUN npm install '@edx/frontend-component-header@npm:@edly-io/indigo-frontend-component-header@^1.0.0'
RUN npm install '@edx/frontend-component-footer@npm:@edly-io/indigo-frontend-component-footer@^1.0.0'
""",
# remove indigo-header and indigo-footer due to incompatible version deps of MFEs
),
(
"mfe-dockerfile-post-npm-install-learner-dashboard",
"""
RUN npm install '@edx/brand@npm:@edly-io/indigo-brand-openedx@^1.0.0'
RUN npm install '@edx/frontend-component-footer@npm:@edly-io/indigo-frontend-component-footer@^1.0.0'
""",
# remove indigo-footer due to incompatible version deps of MFEs
),
]
)

0 comments on commit 9976abd

Please sign in to comment.