osher
osher
Lets first distinct between two users: - **User** - developer using the taskfile - **Automation Engineer** - developer of the taskfile. True, in many cases they are the same, but...
configuration files that are written in JSON have the following limitations: 1 - they do not support comments 2 - keys require quotes 3 - they do not support expressions...
Hi Before creating our own implementation, I was researching the scene for a Redis based configuration solution with in-memory fallback, and got here - which is _awsome!_ (My last visit...
When an error is thrown in any of the handlers - the flow is broken: I don't get to the last fitting, and I don't get to the fault-pipe handler....
First - 👏 . Great initiative, and I'm glad it's maintained again :) I entered because I wanted to PR additions and/or fixes to the underlying data... However - alas...
generally I love the idea, but never got to actually use it. every year I come back and give yoeman a try, especially when I work for a new customer...
this will reduce your on-disk node_modules footprint from ~500K to ~80K. ``` $ du -ahd 1 node_modules/@microsoft/tsdoc-config/lib 12.0K node_modules/@microsoft/tsdoc-config/lib/TSDocConfigFile.d.ts 4.0K node_modules/@microsoft/tsdoc-config/lib/index.js 4.0K node_modules/@microsoft/tsdoc-config/lib/TSDocConfigFile.d.ts.map 420.0K node_modules/@microsoft/tsdoc-config/lib/__tests__ 4.0K node_modules/@microsoft/tsdoc-config/lib/index.d.ts 4.0K node_modules/@microsoft/tsdoc-config/lib/index.d.ts.map 28.0K...
This change will reduce your node_modules on-disk footprint by 97%, from 2.3M to 80K. The reason is that you ship in your package your tests and your test data, and...
This will reduce your node_modules on-disk footprint from 1.8M to 884K, and your package size from 256K to 142K. Cheers ;) ``` $ du -h node_modules/ssh2/ 20.0K node_modules/ssh2/examples 352.0K node_modules/ssh2/test/fixtures/keyParser...
### Description I'm using a module that adds `Error.prototype.toJSON` that represents stack as an array, split by `\n`. The purpose is that error stack traces look pretty when spat as...