Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.

Commit c5dcbbc

Browse files
authored
Merge pull request #66 from ethereumjs/remove-tests-from-dist
Fix package size issue (post-added to v2.2.0 release from #65)
2 parents b8a3fbf + c899dc0 commit c5dcbbc

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ support/readiness by updating to a supporting `ethereumjs-common` version
1313
PR [#64](https://github.com/ethereumjs/ethereumjs-block/pull/64)
1414

1515
**Other Changes:**
16+
- Fixed package size issue by excluding tests and docs from being included in
17+
the package, PR [#66](https://github.com/ethereumjs/ethereumjs-block/pull/66)
1618
- Error message fixes in `index.js`,
1719
PR [#62](https://github.com/ethereumjs/ethereumjs-block/pull/62)
1820
- Replace uses of deprecated `new Buffer` with `Buffer.from`,

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"version": "2.2.0",
44
"description": "Provides Block serialization and help functions",
55
"main": "index.js",
6+
"files": [
7+
"*.js"
8+
],
69
"scripts": {
710
"coverage": "istanbul cover ./tests/index.js",
811
"coveralls": "npm run coverage && coveralls < coverage/lcov.info",

0 commit comments

Comments
 (0)