mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
🐛 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
1 changed files with 4 additions and 2 deletions
|
@ -34,8 +34,10 @@ content/themes/**
|
||||||
content/themes/casper/yarn.lock
|
content/themes/casper/yarn.lock
|
||||||
node_modules/**
|
node_modules/**
|
||||||
core/server/lib/members/static/auth/node_modules/**
|
core/server/lib/members/static/auth/node_modules/**
|
||||||
**/*.db*
|
**/*.db
|
||||||
*.db*
|
**/*.db-journal
|
||||||
|
*.db
|
||||||
|
*.db-journal
|
||||||
.af*
|
.af*
|
||||||
.git*
|
.git*
|
||||||
.groc*
|
.groc*
|
||||||
|
|
Loading…
Add table
Reference in a new issue