Ulyssa Mello
Ulyssa Mello
This looks like a problem with how npm drops permissions when doing a global install. I haven't been able to reproduce this, but I reworked how the install lifecycle script...
@aexmachina This seems to be a bug in node-gyp. The line [here](https://github.com/nodejs/node-gyp/blob/7245415296c5f0a97e10dba6dafbaf2332a67578/gyp/pylib/gyp/generator/make.py#L919-L923) needs to quote everything that `$(builddir)` is used in so that the spaces don't become a problem. I'll...
@tklo Which dependency of yours is pulling in `[email protected]`? I released 0.8.6 a week ago which reworked the build scripts, and should hopefully improve the build process.
This looks like the same problem as #110, and seems to be related to how npm drops permissions. I've reworked how the install lifecycle script gets run to hopefully recover...
@radcapitalist You'll want to make sure you have the [node-gyp dependencies](https://github.com/nodejs/node-gyp/#on-windows) installed. I set them up locally by using [chocolatey](https://chocolatey.org/) to install the [`python2` package](https://chocolatey.org/packages/python2), and installed the [Visual C++...
Also: was the command exiting non-zero for you? Or just printing out an error message? In my local testing, `%errorlevel%` was zero when the dependencies weren't installed, since `suppress-error.js` takes...
I noticed several issues while taking another look at the diff today. I've pushed an update that fixes them.
Ah, cool. I'll take a look into what needs to be done to sync with that repo at some point, and see if I can get this change (or a...
@davepacheco I've synced up the repo with the latest changes to the subversion repo, as well as two other changes I made: one to not consider placing functions in an...
I've added support for the `const` keyword, and for introducing the name of a named function expression into the scope of the body of the function. For now, things declared...