shared: Specify files for NPM package, so lib/ gets included

Otherwise `npm publish` and friends leave it out because it's
ignored in Git.

This also cuts out `tools/` and a few other such files.
This commit is contained in:
Greg Price 2023-01-18 13:20:56 -08:00
parent d41917ecd0
commit 52de17e08f
1 changed files with 6 additions and 1 deletions

View File

@ -13,5 +13,10 @@
},
"devDependencies": {
"typescript": "^4.8.2"
}
},
"files": [
"icons",
"js",
"lib"
]
}