Steven
Steven
I think a cleanup option is missing to delete the `dist` directory before publishing. I see copies of the same file with different names in [`dist`](https://cdn.jsdelivr.net/npm/[email protected]/dist/). For example, compare these...
This link might be helpful for those who want to see the power of TypeScript
- Removed `floor()` since it was unused - Removed `abs()` since it was the same as `Math.abs()` - Removed `sqrt()` since it was the same as `Math.sqrt()`
https://github.com/vercel https://git-stars.com/user/vercel
I believe that you might be able to get better perf if you use React.createFactory() once, and then use the factory to pass props and render the component. See [this...
There's a similar project called [Electrino](https://github.com/pojala/electrino). Should these efforts be consolidated or are the projects different enough?
This is a major change since `swc` doesn't perform type checking, only compilation of TS to JS TODO: remove `transpileOnly` flag since it is always true now
I've seen this pattern used several times where the developer is using spread inside a reduce causing a O(N^2) algorithm when avoiding the reduce would lead to O(N). Example usage...