🐛 Fixed missing Admin assets in published tarball

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
This commit is contained in:
Daniel Lockyer 2023-09-04 09:50:40 +02:00
parent 31d9165296
commit d4217bd321
No known key found for this signature in database
GPG Key ID: D21186F0B47295AD

View File

@ -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*