Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: facebook/regenerator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: regenerator-runtime@0.13.9
Choose a base ref
...
head repository: facebook/regenerator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: regenerator-runtime@0.13.10
Choose a head ref

Commits on Jul 23, 2021

  1. Copy the full SHA
    ac54c54 View commit details
  2. Copy the full SHA
    e1823dc View commit details
  3. Copy the full SHA
    febf73e View commit details
  4. Copy the full SHA
    f5127e9 View commit details
  5. Copy the full SHA
    eecffbc View commit details
  6. Sync root package-lock.json.

    benjamn committed Jul 23, 2021
    Copy the full SHA
    8f53537 View commit details
  7. Copy the full SHA
    4599723 View commit details
  8. Copy the full SHA
    0164e2a View commit details
  9. Copy the full SHA
    1e9f4df View commit details
  10. Improve hasLeapingChildren logic in Emitter#explodeClass.

    Assuming the presence of leaping children by passing true is a
    safe/conservative strategy, but we can reduce unnecessary explosion in
    the common case when neither the superclass expression nor any computed
    class property names contain yield expressions or other "leaping" nodes.
    benjamn committed Jul 23, 2021
    Copy the full SHA
    4fce61a View commit details
  11. Copy the full SHA
    78c5267 View commit details
  12. Merge pull request #408 from nicolo-ribaudo/fix-class

    Improve generator support inside classes. Fixes #407.
    benjamn authored Jul 23, 2021
    Copy the full SHA
    bd6b377 View commit details
  13. Copy the full SHA
    8dc647f View commit details
  14. Copy the full SHA
    9ad4eef View commit details
  15. Bump regenerator-preset version to 0.14.0.

    New minor version because regenerator-transform@0.15.0 is a new minor
    version. Publishing to npm with next rather than latest tag (for now).
    benjamn committed Jul 23, 2021
    Copy the full SHA
    4dfdceb View commit details
  16. Regenerate docs/bundle.js with latest implementation.

    Command:
    
      npx browserify -s regenerator ./main.js > docs/bundle.js
    benjamn committed Jul 23, 2021
    Copy the full SHA
    9c83aa7 View commit details

Commits on Aug 11, 2021

  1. Copy the full SHA
    055b403 View commit details

Commits on Aug 16, 2022

  1. Make _invoke method on generators non-enumerable (#578)

    * Make `_invoke` method on generators non-enumerable
    
    * Rename `define`->`defineProperty`
    nicolo-ribaudo authored Aug 16, 2022
    Copy the full SHA
    f6255ca View commit details

Commits on Oct 13, 2022

  1. Copy the full SHA
    454d405 View commit details
  2. Copy the full SHA
    b8a1470 View commit details
  3. Copy the full SHA
    9bed2bb View commit details
  4. Copy the full SHA
    2ebab76 View commit details
  5. Copy the full SHA
    d7871ac View commit details
  6. Copy the full SHA
    143bb48 View commit details
  7. Copy the full SHA
    8bb3e17 View commit details
  8. Copy the full SHA
    3865d0e View commit details
  9. Copy the full SHA
    927e38e View commit details
  10. Update GitHub Actions branch to main.

    Cherry-picked from #546.
    varunsh-coder authored and benjamn committed Oct 13, 2022
    Copy the full SHA
    d9c7095 View commit details
  11. Copy the full SHA
    08195a4 View commit details
  12. Copy the full SHA
    77efc60 View commit details
  13. Copy the full SHA
    53cf890 View commit details
Showing with 78,601 additions and 60,999 deletions.
  1. +2 −2 .github/workflows/node.js.yml
  2. +1 −0 .gitignore
  3. +69,871 −59,849 docs/bundle.js
  4. +8,443 −1,026 package-lock.json
  5. +1 −1 package.json
  6. +2 −2 packages/preset/package.json
  7. +1 −1 packages/runtime/package.json
  8. +11 −5 packages/runtime/runtime.js
  9. +1 −1 packages/transform/package.json
  10. +101 −62 packages/transform/src/emit.js
  11. +5 −0 test/async.js
  12. +56 −0 test/class.js
  13. +93 −50 test/run.js
  14. +13 −0 test/tests.es6.js
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -5,9 +5,9 @@ name: Node.js CI

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ test/mocha.js
test/mocha.css

test/*.es5.js
test/*.regenerator.js
test/tests.browser.js

.idea
Loading