From d4217bd3216569afd359cf2d0f3cf886ba36d85a Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 4 Sep 2023 09:50:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20missing=20Admin=20assets?= =?UTF-8?q?=20in=20published=20tarball?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs https://github.com/TryGhost/Ghost/issues/17932 - we were missing `chunk.208.dbf172ad32f72f21a5dc.js` from our published tarball - turns out this is due to the lines in the `.npmignore` file to remove .db files, which also matched this file - we can make the regex more specific to avoid these cases --- ghost/core/.npmignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ghost/core/.npmignore b/ghost/core/.npmignore index 0782c872e7..5138c4ce85 100644 --- a/ghost/core/.npmignore +++ b/ghost/core/.npmignore @@ -34,8 +34,10 @@ content/themes/** content/themes/casper/yarn.lock node_modules/** core/server/lib/members/static/auth/node_modules/** -**/*.db* -*.db* +**/*.db +**/*.db-journal +*.db +*.db-journal .af* .git* .groc*