-
-
Notifications
You must be signed in to change notification settings - Fork 594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ReferenceError: regeneratorRuntime is not defined #717
Comments
Also have this issue, did you find a solution? |
I haven't you can try playing around with babel to see if you can get it to work |
Facing the same issue with [email protected] https://github.com/parse-community/Parse-SDK-JS/blob/master/gulpfile.js#L18 specifies
That instructs babel to transpile When you start to use the SDK in a project that does not define a global WorkaroundsThere are some workarounds, but appropriate solution highly depends on your project's specific configuration>
For maintainersIf there's no specific reason to use this option here, I would suggest to set it to |
Why does this error appear? Everything was working fine to me last week and now I have this issue too. |
Same here - I uninstalled [email protected] and installed [email protected] --exact and it's back to normal |
Revert to 2.1.0 is the workaround for now. |
For newbies to the Parse JS SDK (like me) I reverted to the 2.1.0 level of the parse.min.js script by retrieving it from:
placed it in a local js directory and updated the script tag to refer to it instead of the npmcdn server. |
Using parse through CDN or
npm install parse@version
worksI get the following error
ReferenceError: regeneratorRuntime is not defined
If I try to run get the bleeding edge in a node project
npm install parse-community/Parse-SDK-JS.git#master --save
or
build it myself and copy parse.min.js from the dist folder into a simple html file.
I don't know much about babel to fix the issue
The text was updated successfully, but these errors were encountered: