Skip to content

Commit

Permalink
js/package.json: fix bundleDependencies to [] (was false)
Browse files Browse the repository at this point in the history
This should fix the following warning from `npm publish`:

```
npm WARN publish npm auto-corrected some errors in your package.json when publishing.  Please run "npm pkg fix" to address these errors.
npm WARN publish errors corrected:
npm WARN publish "bundleDependencies" was changed from "false" to "[]"
```
  • Loading branch information
generalmimon committed Mar 22, 2024
1 parent c4672ee commit c0f1e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"bugs": {
"url": "https://github.com/kaitai-io/kaitai_struct/issues"
},
"bundleDependencies": false,
"bundleDependencies": [],
"deprecated": false,
"description": "Kaitai Struct Compiler",
"homepage": "https://github.com/kaitai-io/kaitai_struct_compiler#readme",
Expand Down

0 comments on commit c0f1e95

Please sign in to comment.