feat(supported-version): add support for MageOS Minimal edition

This commit is contained in:
Damien Retzinger
2026-05-25 09:11:52 -04:00
parent 1e63c019ed
commit befe0807f7
12 changed files with 95 additions and 24 deletions
@@ -4,6 +4,7 @@ describe('validateProject', () => {
it('returns `true` if its a valid project', () => {
expect(validateProject("magento-open-source")).toBe(true);
expect(validateProject("mage-os")).toBe(true);
expect(validateProject("mage-os-minimal")).toBe(true);
});
it('throws a helpful exception if it is an invalid project', () => {