From 7d04f9560302735659cc87b0e5e5e38677219aa2 Mon Sep 17 00:00:00 2001 From: Annika <137914274+annikorp@users.noreply.github.com> Date: Wed, 6 Dec 2023 20:20:38 +0800 Subject: [PATCH] docs(plugins): puts local-file plugin into correct category in site (#5804) Closes [Issue #5782](https://github.com/medusajs/medusa/issues/5782) Per Shahed, @medusajs/file-local plugin doesn't have the correct "storage" category, and its because the [package.json file](https://github.com/medusajs/medusa/blob/develop/packages/medusa-file-local/package.json) doesn't have the keyword medusa-plugin-storage. This PR is to add the keyword. --- packages/medusa-file-local/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/medusa-file-local/package.json b/packages/medusa-file-local/package.json index f94184970e..20a5366644 100644 --- a/packages/medusa-file-local/package.json +++ b/packages/medusa-file-local/package.json @@ -33,6 +33,7 @@ "gitHead": "81a7ff73d012fda722f6e9ef0bd9ba0232d37808", "keywords": [ "medusa-plugin", - "medusa-plugin-file" + "medusa-plugin-file", + "medusa-plugin-storage" ] }