You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.
Now that meteor 1.9.3 use Node 12 meteor-promise should also be updated to support fibers 4.0.0 since it's a fact that fibers 3.1.1 doesn't work with node 12 :
How is this package included with releases 1.9.3 and up if it requires an old version of fibers that doesn't work with node 12? I'm trying to track down a fibers issue I'm having and it looks like I'll run into this once I fix the first one
This package doesn't depend on the fibers package directly. It only has a devDependency on fibers to install them for running tests / doing development on meteor-promise itself.
It instead just assumes that the dependent program supplies the Fiber constructor by setting it on Promise.Fiber (like the tests in this repo do:
So that's why it still works with Node 12+ (because Meteor installs fibers v4+ and sets Promise.Fiber to that version's constructor).
However, it would still be good to bump the devDependency on fibers in here so tests are executed against the same version of fibers as the latest Meteor release uses.
Now that meteor 1.9.3 use Node 12 meteor-promise should also be updated to support fibers 4.0.0 since it's a fact that fibers 3.1.1 doesn't work with node 12 :
laverdet/node-fibers#409
The text was updated successfully, but these errors were encountered: