* chore: add medusa v2 feature flag * chore: cleanup more FF * chore: cleanup workflows FF * chore: add comments on broken specs * chore: added check for package registration * chore: reenable workflows FF for create order workflow * chore: disable FF on test cli db * chore: hide loader validation behind FF * chore: use medusa v2 enabled * chore: register feature flag router in use-db * chore: change to minro
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import { FeatureFlagTypes } from "@medusajs/types"
|
|
|
|
export const MedusaV2Flag: FeatureFlagTypes.FlagSettings = {
|
|
key: "medusa_v2",
|
|
default_val: false,
|
|
env_key: "MEDUSA_FF_MEDUSA_V2",
|
|
description: "[WIP] Enable Medusa V2",
|
|
}
|