Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openedx/frontend-component-header
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.8.1
Choose a base ref
...
head repository: openedx/frontend-component-header
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.9.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Oct 30, 2023

  1. Copy the full SHA
    48b22ea View commit details
  2. feat: babel-plugin-react-intl to babel-plugin-formatjs migration (#404)

    * feat: babel-plugin-react-intl to babel-plugin-formatjs migration
    
    * fix: upgraded frontend-build to fix security issue
    
    * fix: upgraded frontend-build to fix security issue
    
    * fix: upgraded frontend build again
    
    * refactor: upgraded to latest frontend-build and resolved vulnerabilities
    abdullahwaheed authored Oct 30, 2023
    Copy the full SHA
    3c1d215 View commit details
Showing with 280 additions and 183 deletions.
  1. +2 −2 Makefile
  2. +273 −177 package-lock.json
  3. +3 −3 package.json
  4. +2 −1 src/Menu/Menu.jsx
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ i18n = ./src/i18n
transifex_input = $(i18n)/transifex_input.json

# This directory must match .babelrc .
transifex_temp = ./temp/babel-plugin-react-intl
transifex_temp = ./temp/babel-plugin-formatjs

build:
rm -rf ./dist
@@ -17,7 +17,7 @@ build:
@rm -rf dist/__mocks__

requirements:
npm install
npm ci

i18n.extract:
# Pulling display strings from .jsx files into .json files...
Loading