Skip to content

Commit

Permalink
fix(NODE-6590): specify correct entrypoint in package.json and includ…
Browse files Browse the repository at this point in the history
…e binding.gyp in the package (#47)
  • Loading branch information
baileympearson authored Dec 2, 2024
1 parent 35d87d9 commit f562b59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
with:
ignore_install_scripts: true

- run: npm publish --provenance
- run: npm publish --provenance --tag alpha
if: ${{ needs.release_please.outputs.release_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "@mongodb-js/zstd",
"version": "2.0.0-alpha.0",
"main": "index.js",
"main": "lib/index.js",
"types": "index.d.ts",
"repository": "https://github.com/mongodb-js/zstd",
"files": [
"index.d.ts",
"lib/index.js",
"addon/*"
"addon/*",
"binding.gyp"
],
"dependencies": {
"node-addon-api": "^4.3.0",
Expand Down

0 comments on commit f562b59

Please sign in to comment.