ElPrudi
ElPrudi
- @trivago/prettier-plugin-sort-imports already updated to prettier 3 and to my understanding, `eslint-plugin-import` also has a rule to sort imports - get-stdin is kinda "deprecated" in favor of [`streamConsumers.text`](https://nodejs.org/api/webstreams.html#streamconsumerstextstream), Sindre updated...
Ah, thank you very much. My bad for not reading the docs. The thing is: I have packages with the exact same dependencies and it was still checking and requesting...
I can tell you the stats of mine after fetching 90 dependencies: Received Bytes: 80.039.784 Sent Bytes: 35.658 Receive Speed: Roughly 2.7 MB/s Received Packets: 51.921 Sent Packets: 103 The...
Yup, here are the stats: Received Bytes: 7.069.026 Send Bytes: 817 Receive Speed: Roughly 2.7 MB/s Received Packets: 2.103 Send Packets: 3 It's basically downloading the entire package from the...
Also, yes, cache does help. Previously I had to cancel the ncu process, but now I tested it on a monorepo with way more packages: Received Bytes: 160.470.651 Send Bytes:...
I was refering to [this tab](https://github.com/microsoft/TypeScript/releases). Wouldn't it be possible to just read the first lines of a README or package.json or other manifest files? Is it possible to just...
Still its weird that the received packets are 7MB in total when the entire package.json file of typescript is just 3.44 KB. There must be a lot of unnecessary data...
Ah, so it essentially boils down to a faulty dependency. Well, I hope the new dependency reduces the bandwidth usage a lot. At least this issue gave us a little...
Ok, this small change made this tool MUCH faster and reduced the bandwidth usage by a lot. Basically `cache: true` and `cache: false` are behaving the same now in default...
Only the performance changed. TypeScript still costs 7MB and my repository still costs 33MB. The only thing that got reduced was the received packets with `ncu typescript` from 2K to...