mntnoe

Results 7 comments of mntnoe

Found the following in the npm install output: ``` > node install.js [execsync v1.0.2] Attempting to compile native extensions. [execSync v1.0.2] Native code compile failed!! ``` Edit: Node >= 0.11...

Thank you for looking into this. When using `{ leading: true }`, we get some strange behavior in our code with v8.0.0, where the new value is used initially, but...

We have been dealing with the same challenge, and made an enriched variant of `stylesheet()` that can make `$nest` selectors refer to other classes in a typesafe manner. I've created...

CI would be non-trivial to set up, given the nature of piping. Perhaps a shell script doing something like the following: - Create a JS file using piping that outputs...

Hmm, it seems to be an issue with creating http servers on workers in general. The server still runs, though: ``` var cluster = require("cluster"); if (cluster.isMaster) { cluster.fork(); }...

What behavior do you get if you rename chill/chill-frontend/electron.js?

I don't think it is possible to use piping directly from the electron executable. However, I looked at the `electron-quick-start` repo, and was able to get piping working by making...