componentjs / builder2.js

builder for component
50 stars 20 forks source link

yield is actually required in generators #80

Open wryk opened 10 years ago

wryk commented 10 years ago

substack/node-syntax-error throw the "Missing yield in generator" error because his esprima-fb dependency is outdated

related PR : substack/node-syntax-error#7

we need to update our node-syntax-error dependency after

timaschew commented 10 years ago

shouldn't ^1.1.1 update automatically to the next version unless substack publishs it as 2.x ?

wryk commented 10 years ago

yep, but if another component user meet the same problem, he can see this issue :)

cristiandouce commented 10 years ago

Also, using ^1.1.1 semver flags allows different versions of the same release to co-exist along the developers who use component, right?

The only way to actually fix this should be by re-install of the component cli, or re-install of the application using the component builder 2. Am I right?

There is no actual way to notice, not from the cli nor any unified channel that there was an issue fixed with the cli/lib and therefore we should all update to the latest or reinstall the current.

Please correct me if I'm wrong. Thanks!