From d7ba8b3f91828e61555a2ad2b8d5d26dd30a44e2 Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Sat, 27 Jan 2024 10:10:34 +0200 Subject: [PATCH] fix: clean command not finding rimraf (#71) --- packages/medusa-plugin-strapi-ts/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/medusa-plugin-strapi-ts/package.json b/packages/medusa-plugin-strapi-ts/package.json index 0691952..4d467a5 100644 --- a/packages/medusa-plugin-strapi-ts/package.json +++ b/packages/medusa-plugin-strapi-ts/package.json @@ -27,7 +27,7 @@ "license": "MIT", "scripts": { "integration-test": "yarn test", - "clean": "./node_modules/.bin/rimraf dist/ types/ services/ models/ migrations/ api/ subscribers/ utils/ index.js index.map.js", + "clean": "npx rimraf dist/ types/ services/ models/ migrations/ api/ subscribers/ utils/ index.js index.map.js", "build": "npm run clean && tsc -p tsconfig.json", "watch": "tsc --watch", "test": "jest --coverage --runInBand --setupFiles=dotenv/config "