Skip to content

Commit

Permalink
Downgraded @types/node to 8.10.x version to match our min Node engine…
Browse files Browse the repository at this point in the history
… version.
  • Loading branch information
c1rrus committed Sep 18, 2019
1 parent 3bffc38 commit 2b47c3a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dependencies": {
"@types/cheerio": "^0.22.13",
"@types/color": "^3.0.0",
"@types/node": "^12.7.5",
"@types/node": "^8.10.54",
"@types/through2": "^2.0.34",
"cheerio": "^1.0.0-rc.3",
"color": "^3.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ describe('SvgFill class', () => {
highWaterMark: 1024 // Ensure our test file is broken into multiple chunks
})
.pipe(svgFill.fillSvgStream())
.on('data', function(chunk){
.on('data', function(chunk: Buffer){
if (filledSvgData === undefined) {
filledSvgData = chunk;
}
Expand Down

0 comments on commit 2b47c3a

Please sign in to comment.