Skip to content

Commit

Permalink
fix(deps): Remove @types/node as a peer dependency
Browse files Browse the repository at this point in the history
Seems to be more destructive than helpful.

Fixes #590.
  • Loading branch information
fb55 committed Oct 20, 2020
1 parent 1947a31 commit 1ace384
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@
"domutils": "^2.4.2",
"entities": "^2.0.0"
},
"peerDependencies": {
"@types/node": "^14.0.5"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.5",
Expand Down
4 changes: 4 additions & 0 deletions src/WritableStream.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { Parser, Handler, ParserOptions } from "./Parser";
/*
* NOTE: If either of these two imports produces a type error,
* please update your @types/node dependency!
*/
import { Writable } from "stream";
import { StringDecoder } from "string_decoder";

Expand Down

0 comments on commit 1ace384

Please sign in to comment.