This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
3.2.23 and 3.2.24 broken #807
Labels
Comments
This is very much still broken, and 803 and 804 claim it as closed. |
@djMax there still seems to be a "leftover" regression regarding |
I would consider unpublishing 23 and 24. |
Same experience with broken computed property names. |
@jdalton repro: export class Foo {
["bar"]() {} // not working
} marking as "new" bug, since it was mentioned in the other [closed] thread. |
I just run into the same problem, here is my minimal test case: https://github.com/gr2m/esm-bug // index.js
require = require("esm")(module/*, options*/)
const { MyClass }= require("./module.js")
const mc = new MyClass()
mc[Symbol.iterator]()
// module.js
export class MyClass {
[Symbol.iterator]() {
console.log('test')
}
} |
|
That fixed it for me, cheers 👍 |
Fixed here as well. Thank you! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Now sure why yet, but 3.2.22 works.
Investigating...
The text was updated successfully, but these errors were encountered: