Skip to content

Commit 386be3f

Browse files
committedMar 16, 2022
Remove .npmignore
1 parent 62c9fad commit 386be3f

File tree

5 files changed

+17
-31
lines changed

5 files changed

+17
-31
lines changed
 

‎.npmignore

-24
This file was deleted.

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.2.1 (2022-03-16)
2+
3+
### Changed
4+
5+
- No longer use `.npmignore` to ignore files - Reduce package size from 54.1kB/277.4kB to 50.1kB/265.2kB
6+
17
## 7.2.0 (2022-03-15)
28

39
### Added

‎package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "boxrec",
3-
"version": "7.2.0",
3+
"version": "7.2.1",
44
"description": "retrieve information from BoxRec and return it in JSON format",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -48,12 +48,15 @@
4848
"bugs": {
4949
"url": "https://github.com/boxing/boxrec/labels/bug"
5050
},
51+
"files": [
52+
"dist/"
53+
],
5154
"repository": {
5255
"type": "git",
5356
"url": "https://github.com/boxing/boxrec"
5457
},
5558
"dependencies": {
56-
"boxrec-requests": "5.3.0",
59+
"boxrec-requests": "5.3.1",
5760
"cheerio": "^1.0.0-rc.2",
5861
"request": "^2.88.0",
5962
"request-promise": "^4.2.6",

‎tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"exclude": [
2626
"node_modules",
2727
"**/*.spec.ts",
28-
"**/*.spec.e2e.ts"
28+
"**/*.spec.e2e.ts",
29+
"**/__tests__/"
2930
]
3031
}

‎yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -928,10 +928,10 @@ boxrec-mocks@^3.0.1:
928928
html-loader "^0.5.5"
929929
webpack "^4.28.0"
930930

931-
boxrec-requests@5.3.0:
932-
version "5.3.0"
933-
resolved "https://registry.yarnpkg.com/boxrec-requests/-/boxrec-requests-5.3.0.tgz#77d2e2d89a4c68bc839f69c5a31abb3403a51f72"
934-
integrity sha512-IZlaXzDfNmEAMHugsDzFWZ+njjndsae01ARJ7cZ69ejBe19ejSM8sL0f5Y7qxNAWoUq0fPppIiVAwVi/GvlKBA==
931+
boxrec-requests@5.3.1:
932+
version "5.3.1"
933+
resolved "https://registry.yarnpkg.com/boxrec-requests/-/boxrec-requests-5.3.1.tgz#f47d2f0db5765820a95ff67d97b9a229e3a68a52"
934+
integrity sha512-Qs1Hjmfek85R685iyXW3qgmJ82vVMD46v0beNp4IsaN5a1TU10p9wb5HDLNPzjSeG4540CPve8J1mENF0Q/qyw==
935935
dependencies:
936936
cheerio "^1.0.0-rc.3"
937937
request "^2.88.0"

0 commit comments

Comments
 (0)
Please sign in to comment.