SyntaxError: import not found: EventEmitter #2338
-
Hi :)
throws this error:
Am I using "events" wrong or is that a bug of snowpack? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Great find! There are a few older npm packages like this that can't be scanned properly for ESM conversion, so they only expose a default export. In this case, you need to do:
But I'll go ahead and add this package to a list that we keep internally in Snowpack. In the next release, your code snippet above should work. |
Beta Was this translation helpful? Give feedback.
Great find! There are a few older npm packages like this that can't be scanned properly for ESM conversion, so they only expose a default export. In this case, you need to do:
But I'll go ahead and add this package to a list that we keep internally in Snowpack. In the next release, your code snippet above should work.
977621d