Describe the bug
The dependencies in package.json are strict:
- precisely 3.0.0 of events
- precisely 12.12.11 of @types/node
Is it really necessary for them to be strict down to the patchlevel? Surely not.
This means that I have these extra packages in my build now. In particular, events 3.0.0 dates from 2018, which just seems like it's asking for trouble.
Expected behavior
I haven't tried, but I guess events@^3 or events@^3.3 is sufficient.
I see lots of people are using @types/node@*, which seems totally reasonable.
Describe the bug
The dependencies in package.json are strict:
Is it really necessary for them to be strict down to the patchlevel? Surely not.
This means that I have these extra packages in my build now. In particular, events 3.0.0 dates from 2018, which just seems like it's asking for trouble.
Expected behavior
I haven't tried, but I guess
events@^3orevents@^3.3is sufficient.I see lots of people are using
@types/node@*, which seems totally reasonable.