Fix version of regenerator-runtime (#644)

7.7.7 is version of @babel/runtime, not regenerator-runtime. Looks like
the intended version was "0.11.0" as you can see in the yarn.lock:

    regenerator-runtime@^0.11.0:
      version "0.11.1"
      resolved "https://registry.yarnpkg.com/regenerator-runtime/-/re...
      integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT9...

Reference:
  https://github.com/swc-project/swc/commit/05be89c19
This commit is contained in:
Hyeon Kim 2020-02-10 03:23:10 +09:00 committed by GitHub
parent 530a5f34db
commit 226336b38b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
{
"devDependencies": {
"regenerator-runtime": "^7.7.7",
"regenerator-runtime": "^0.11.0",
"jest": "^23.6.0"
}
}