Skip to content

Commit

Permalink
fix(server): rework server package file inclusion
Browse files Browse the repository at this point in the history
The run of `npm pack` was not picking up `./out/**` subfolders. The
`files` property has now been changed to include the entire folder.

Fixes #558.
  • Loading branch information
kanej committed Apr 18, 2024
1 parent 8a34201 commit 4b4610b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"main": "./out/index.js",
"types": "./out/index.d.ts",
"files": [
"out/**/*"
"out/"
],
"bin": {
"nomicfoundation-solidity-language-server": "./out/index.js"
Expand Down

0 comments on commit 4b4610b

Please sign in to comment.