-
Notifications
You must be signed in to change notification settings - Fork 100
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
_ref not defined in Create react app. #41
Comments
Same issue here with CRA |
Hi there - your {
"compilerOptions": {
"target": "ES2015"
}
} For those interested, you can easily check to see what a function "looks like" when it gets compiled by your build system: const myFunction = async msg => {
return msg;
};
console.log('' + myFunction); If you run the above in a stock CRA setup, you'll notice the compiled code contains a bunch of references to external variables that Greenlet isn't aware of. If the tsconfig option doesn't work for folks (perhaps you're still required to support IE11), you can either remove the async/await, or use a String: // Option 1: use a non-async function
const greenletRead = greenlet(msg => {
// you can optionally use promises here instead of async/await
return msg;
})
// Option 2: use a string
const greenletRead = greenlet(`async function(msg) {
return msg;
}`)
await greenletRead('Hey from greenlet'); |
I tried option one and am receiving a new error const greenletRead = greenlet(msg => {
return new Promise((resolve, reject) => {
return resolve(msg)
})
}) I'm curious if you have a working example? I need to support IE11. |
It works for me with |
We are planning to use greenlet to defer expensive computations to web worker in CRA project ( along with Type script ). To test it out I was playing around with a small example.
greenlet-helpers.ts
utils.ts
Running into
_ref is not defined
when ever this gets invoked. It would be great if I can get any pointers to get this started.P.S. I also tried moving the code snippet from
greenlet-helpers
touitils
and still running into the same issue.utils.ts
The text was updated successfully, but these errors were encountered: