From f8939fb344cb8bf1a4375f6873070eb9f06de83b Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 2 Aug 2022 15:30:27 +0200 Subject: [PATCH] Added `internalPackages` metadata entry to `package.json` - our internal tooling needs to know when to add LICENSE files - unfortunately, setting a package to private gives it a LICENSE file of a closed source app, which is not the case here - my MVP solution is just to add a key here so I can detect it in Slimer --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 60e0b379cf..3b1cd420f8 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ ], "monorepo": { "public": false, + "internalPackages": true, "repo": "https://github.com/TryGhost/Ghost", "scope": "@tryghost" },