@mercurjs/dashboard-sdk 2.0.0-canary.78 → 2.0.0-canary.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -715,7 +715,7 @@ async function loadMedusaConfig(medusaConfigPath, root) {
|
|
|
715
715
|
break;
|
|
716
716
|
}
|
|
717
717
|
}
|
|
718
|
-
const plugins = medusaConfig?.plugins ?? [];
|
|
718
|
+
const plugins = medusaConfig?.plugins?.filter((plugin) => plugin.resolve !== "@medusajs/draft-order") ?? [];
|
|
719
719
|
const pluginExtensions = resolvePluginExtensions(plugins, configDir);
|
|
720
720
|
return { base, pluginExtensions };
|
|
721
721
|
} catch {
|