Will Harney
Will Harney
## Details This time, with actual things to read! ## Does this pull request introduce a breaking change? * ✅ No, it does not introduce a breaking change. * 🚨...
To enable reactivity, the `@wire` decorator transforms code in such a way that computed properties are re-computed whenever updates are needed. This means that variables used as property keys must...
Prior to #3992, there existed a file [weakref.d.ts](https://github.com/salesforce/lwc/blob/ac6514035a474e6bae90bb599f9a6508002cabf4/packages/%40lwc/engine-core/src/typings/weakref.d.ts) that contained type definitions for the [WeakRef](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakRef) interface. This was added before the TypeScript compiler targeted ES2021, which includes the type definitions...
If a PR fixes an issue, then it would be nice if we could somehow catch all TODOs related to the fixed ticket, so that all the relevant changes can...
# Description Another one of those ones where I thought to myself "It's annoying that I can't do this. I bet it would be easy to implement!" And then it...
Follow up to #4191 because I forgot to delete a word. Per the [`nx` docs](https://nx.dev/nx-api/nx/documents/run-many#all), specifying `--all` is no longer required. The command is the same without the flag, and...
## Details Very much still a work in progress; opening draft PR to facilitate discussion. ## Does this pull request introduce a breaking change? - 😮💨 No, it does not...
Currently, we have 33 `// TODO`* comments in the codebase that reference 21 issues that have been closed. We should re-visit those comments to assess whether the work has been...
## Details ### Things that changed * `lwc/index.js` just re-exports from `@lwc/engine-dom`. `lwc/index.d.ts` contains numerous outdated types. This removes them. Fixes #3598. * Our decorators currently use the type signature...
We added a basic nucleus config in #230, and chose which dependents we should test based on the results of a single run in #229. That's probably not an adequate...