🐛 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:
parent
31d9165296
commit
d4217bd321
@ -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*
|
||||
|
Loading…
Reference in New Issue
Block a user