al6x / synchronize

Write asynchronous code as if it's synchronous
http://alexeypetrushin.github.com/synchronize
316 stars 57 forks source link

wrong version of fibers on package.json #67

Closed OffbeatPlanet closed 5 years ago

OffbeatPlanet commented 5 years ago

Hi, The fibers dependency on package.json on the latest version of this github repository (https://github.com/alexeypetrushin/synchronize/blob/master/package.json) is "^3.0.0".

But when I install synchronize with yarn add synchronize or npm install synchronize on node v10, the installation fails. Having checked the package.json on my newly created node_modules/synchronize, that's what we can see:

  "dependencies": {
    "fibers": "1.0.x"
  },

So, I don't know how, but the published version of synchronize doesn't match the version on github, which looks to be fine.

Could you please publish again?

Thanks a lot!

zakdav commented 5 years ago

Use a fork like https://www.npmjs.com/package/synchronize_f2

OffbeatPlanet commented 5 years ago

Thanks a lot @zakdav