Damian Kaczmarek

Results 192 comments of Damian Kaczmarek

@XTerry2021 could you check which version of `nan` is being used when you install from master? I believe I need to lock it to a concrete version.

Can you try version 1.0.5?

Thanks. Is it reproducible? Do you have an example which breaks?

It's probably because of the usage of `execFileAsync` https://github.com/Rush/publish-to-git/blob/master/index.js#L20 There are two options to fix this: - Increase maxBuffer so that command line output can fit it in it -...

Why can't we have code similar to what @joshball described? I also need ES5 support. The last example is very ugly, I was too looking to use `di.js` for relatively...

note: I am no expert in DI... ``` injector.get(main, { vin: fetchVin(), engineSize: engineSize() }); ``` or ``` injector.onMissing(function(name, cb) { cb(null, customDeps[name]); }); injector.get(main); ``` In my opinion the...

So if somebody creates a `/16` overlay network, what problems could they be facing?

Adding a `native` directory helped a bit. The code says: ``` let { crate = "native" } = options; ``` I created my project through an npm template which is...

I believe I made a mistake by trying to use `neon build` and having the base directory created via the new npm template. I got very confused by the old...