From 24992bcf74625b05fc352808afe618a1a4720b9c Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Sat, 2 Jul 2022 18:13:13 +0200 Subject: [PATCH] fix(new-design): Add bin entry to package.json --- config/exceptions.yaml | 2 ++ packages/new-design/package.json | 3 +++ 2 files changed, 5 insertions(+) diff --git a/config/exceptions.yaml b/config/exceptions.yaml index c8963c46733..dcfc887207f 100644 --- a/config/exceptions.yaml +++ b/config/exceptions.yaml @@ -76,6 +76,8 @@ packageJson: lunetius: &starf author: Starfetch (https://github.com/starfetch) new-design: + bin: + new-design: "dist/index.js" files: - README.md - package.json diff --git a/packages/new-design/package.json b/packages/new-design/package.json index a4a555ff398..efff8d33b2a 100644 --- a/packages/new-design/package.json +++ b/packages/new-design/package.json @@ -54,5 +54,8 @@ "engines": { "node": ">=14.0.0", "npm": ">=6" + }, + "bin": { + "new-design": "dist/index.js" } }