Amin Ya

Results 1114 comments of Amin Ya

[As I showed before](https://github.com/parcel-bundler/parcel/issues/5072#issuecomment-757375571), the performance bottleneck is disk I/O and not CPU. These benchmarks don't show any improvement because CPU is not an issue here. ------ Regarding CPU (assuming...

Here is a new profile I ran on [solid-simple-table](https://github.com/aminya/solid-simple-table/) with Parcel 2.0.0-nightly.535 and the #5642 patch applied (in which it changes one of realPathSyncs with an async version). [profile-20210115-142429.zip](https://github.com/parcel-bundler/parcel/files/5822781/profile-20210115-142429.zip) Other...

Another interesting result. Using pnpm or yarn makes a difference in the build time. I think this is because pnpm uses symlinks instead of copying the files, and resolving the...

> > This resolve preset is very suspicious. 3s to find a preset > > That wasn't the case for me, neither macOS nor Windows. Well, building CSSNano using Parcel...

> Have you tried doing `require("cssnano")` wihtout Parcel in a JS script and timing the require call? To make sure this is due to Node on Windows and not caused...

Using [my cssnano PR here](https://github.com/cssnano/cssnano/pull/985) the build time is reduced 2 seconds! The parcel PR: https://github.com/parcel-bundler/parcel/pull/5671

> @aminya have you looked into why disk access on your machine is so slow? I don't think anyone else has been able to reproduce the cssnano issue. Are you...

There is an explicit code that results in this issue. I don't know why just Catch2 doesn't use main on Windows similar to others! https://github.com/catchorg/Catch2/blob/e33de8fc05ca80923a8216a8aecd6a1afc5e00af/include/internal/catch_default_main.hpp#L16-L18

Adding -municode doesn't fix undefined references to `WinMain' https://github.com/aminya/project_options/issues/129 Why do you want to use non-standard wmain on Windows?

If you want to keep this Unicode default on MinGW, you should handle `-municode` inside Catch2's CMake files. By default, it is not possible to build a simple test on...