Conversation
BREAKING CHANGE: refactors the MFE for frontend-base.
|
When trying to run I did a bit of searching and found https://stackoverflow.com/a/65621732
I haven't tried, but my guess is that adding a |
|
@brian-smith-tcril, what I did was just increase my That said, yes, it's arguable that few people will go messing around in node_modules, and fewer still would expect changes to be applied immediately. |
Yeah, some of the other answers on that stackoverflow thread recommended increasing that limit. The reason excluding |
Update package.json for publication as a "buildless" library.
Bump frontend-base to avoid the inotify handle resource starvation.
Restore accidental reverts from the master port: Dashboard wrapper div and main landmark, test assertions for disabled state and aria-disabled, and initIsPending in Dashboard test. Clean up nits: remove unused React imports, replace escape sequences with literal unicode, simplify ConfirmEmailBanner hooks, fix test names, use @src alias in socialShare, and deduplicate beforeEach mocks in UnenrollConfirmModal tests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Ensures unauthenticated users are redirected to login before reaching the learner dashboard. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Add workspaces configuration and workspace-aware scripts for developing with local packages (such as frontend-base). Also, since npm skips bin-linking for workspace packages during install, do it when frontend-base is built. Part of openedx/frontend-base#184 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Adds `.releaserc` and a release GitHub Actions workflow, releasing from the `frontend-base` branch as a prerelease (`alpha`) to the `latest` dist-tag. Co-Authored-By: Claude <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.7 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Rename src/i18n/index.js → index.ts (project uses TypeScript) - Replace placeholder messages object with clean re-export from ./messages - Add src/i18n/messages.d.ts type stub so TypeScript is satisfied before translations:pull has been run - Add translations:pull npm script (backed by openedx translations:pull) - Replace old atlas-based pull_translations Makefile target with npm run translations:pull, passing ATLAS_OPTIONS through - Remove unused intl_imports, i18n, ATLAS_EXTRA_SOURCES, and ATLAS_EXTRA_INTL_IMPORTS Makefile variables - Remove detect_changed_source_translations Makefile target (unused by any CI workflow, extract_translations, or pull_translations) - Add src/i18n/messages.ts, src/i18n/messages/, and src/i18n/site-messages/index.ts to .gitignore (generated files) - Update package-lock to resolve @openedx/frontend-base to 1.0.0-alpha.23 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.8 🎉 The release is available on: Your semantic-release bot 📦🚀 |
The old App.messages pattern included apps exporting their messages via \`src/index.ts\`. There is no reason for apps to export this. The file only exists so the app can run as a site with \`npm run dev\`. With frontend-base's i18n pipeline, translations are handled at the site level via \`site.i18n\`. App-only testing didn't catch this because the webpack fallback plugin correctly resolves the missing messages file when \`npm run dev\` is running the app as a site from the repo root (\`src/i18n/\` context). The broken export only surfaces when the compiled \`dist/\` is consumed by a site. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.9 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Claude <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.10 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Fixes #829 Co-Authored-By: Claude <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.11 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Co-Authored-By: Claude <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.12 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Use a roles array in the dashboard route so that header slot widgets scope correctly to the dashboard role, and set the Courses link URL accordingly. Also wrap MasqueradeBar in a Paragon Container so its content aligns with the header and main content areas. Co-Authored-By: Claude <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.13 🎉 The release is available on: Your semantic-release bot 📦🚀 |
The shell stylesheet moved from a SCSS file to a JS manifest at @openedx/frontend-base/shell/style. Imports it directly from site.config.dev.tsx and drops the now-redundant site.scss. Removes the ./app.scss subpath export and drops @edx/brand since the dev harness runs unbranded. See openedx/frontend-base#232. Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Claude <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.14 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Adds an npm run build:ci script that exercises the real app graph through webpack, and wires it into the CI workflow after the existing build step. Co-Authored-By: Claude <noreply@anthropic.com>
|
🎉 This PR is included in version 1.0.0-alpha.15 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
Refer to the parent issue for a full description.
In short, this refactors the codebase for frontend-base support. There are several breaking changes. It is a long-lived feature branch, and as such, should not be rebased or squashed until time comes for it to either merge to master or become master.
BREAKING CHANGE: Plugins written prior to this will need to be adapted to frontend-base syntax.