diff options
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/scripts/patch-medusa.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/backend/scripts/patch-medusa.js b/backend/scripts/patch-medusa.js index b20a9fd..c18625f 100644 --- a/backend/scripts/patch-medusa.js +++ b/backend/scripts/patch-medusa.js @@ -21,6 +21,16 @@ const notificationPath = path.join( "services",
"notification.js"
);
+const fulfillmentPath = path.join(
+ __dirname,
+ "..",
+ "node_modules",
+ "@medusajs",
+ "medusa",
+ "dist",
+ "services",
+ "fulfillment-provider.js"
+);
const targets = [
{
@@ -31,6 +41,10 @@ const targets = [ label: "notification",
filePath: notificationPath,
},
+ {
+ label: "fulfillment-provider",
+ filePath: fulfillmentPath,
+ },
];
const replacements = [
|
