Skip to content
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

[Bug] regeneratorRuntime is not defined with useAsyncTask #51

Open
dospunk opened this issue Jul 21, 2021 · 9 comments
Open

[Bug] regeneratorRuntime is not defined with useAsyncTask #51

dospunk opened this issue Jul 21, 2021 · 9 comments

Comments

@dospunk
Copy link

dospunk commented Jul 21, 2021

I want to use useAsyncTask like so:

const myAsyncTask = useAsyncTask(() => {
    return functionThatReturnsPromiseWithMyData('this is an argument')
})

but when I try to run this, I get Uncaught (in promise) ReferenceError: regeneratorRuntime is not defined

I am using vue 3.1.4, vite 2.4.1, and vue-concurrency 2.1.2

@MartinMalinda
Copy link
Owner

MartinMalinda commented Jul 21, 2021 via email

@nickngqs
Copy link

nickngqs commented Aug 6, 2021

I'm getting this bug as well, with usePipeTask.

vite 2.1.3, vue 3.2.0, vue-concurrency 2.1.2

@eLoyyyyy
Copy link

same behavior with usePipeTask.

vue@2.6.12
nuxt@2.15.6
vue-concurrency@2.1.2

@MartinMalinda
Copy link
Owner

Caused by developit/microbundle#708. I tried to update microbundle but ran into different errors afterwards. I'll give it another try when I have more time.

@torleifhalseth
Copy link

Any updates on this @MartinMalinda?

@amrap030
Copy link

amrap030 commented Apr 19, 2022

I have this error too in a vue 3 project. I also tried pasting your example from the test as shown below and still have the same error:

const addTask = useTask(function* (signal, a: number, b: number) {
  return yield a + b;
});
const add10Task = useTask(function* (signal, a: number) {
  return yield a + 10;
});
const add20Task = useTask(function* (signal, a: number) {
  return yield a + 20;
});
const pipeTask = useSequentialTask(addTask, add10Task, add20Task);

When i remove the last line, I get no errors. This makes the library unfortunately unusable for me.

@Hawxy
Copy link
Contributor

Hawxy commented Jun 29, 2022

With Vue 3 & Vite I've been using the temporary fix of :

  1. npm install regenerator-runtime
  2. Adding import 'regenerator-runtime/runtime' at the top of main.ts

If you're using webpack/babel (ie Vue 2), you can also import it directly without the extra package:
import '@babel/runtime/regenerator';

@MartinMalinda
Copy link
Owner

MartinMalinda commented Feb 6, 2024

Since vite is used to bundle the lib now, there's a good chance it's fixed in 5.0. Can anyone confirm?

@Hawxy
Copy link
Contributor

Hawxy commented Feb 7, 2024

Yes this is fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants