From c4c0e3fa71da9de84388ee5288752ce648f36a34 Mon Sep 17 00:00:00 2001 From: Vladislav Kibenko Date: Thu, 11 Jul 2024 12:50:58 +0300 Subject: [PATCH] fix(mate): make mate accessible via "mate" command --- packages/mate/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/mate/package.json b/packages/mate/package.json index 9b2188e41..df8842864 100644 --- a/packages/mate/package.json +++ b/packages/mate/package.json @@ -22,7 +22,9 @@ "files": [ "dist" ], - "bin": "dist/index.js", + "bin": { + "mate": "dist/index.js" + }, "scripts": { "lint": "cd ../.. && eslint packages/mate/src --ignore-pattern **/*.test.ts", "lint:fix": "pnpm run lint --fix",