Yadd
Yadd
Hi, to be able to reproduce your build, is it possible to add tags in this repo ? Last tag is 0.17 while clipanion has 3.2.0-rc.3 in npm. Cheers, Yadd...
Hi, npm references a 1.0.0 version but there is no corresponding tag here. Could you add it ?
Hi, this patch looks enough to update mkdirp dependency to ^1.0.3: ```patch --- a/lib/index.js +++ b/lib/index.js @@ -121,12 +121,12 @@ err.errno = 27; options.errors.push(err); } else { - mkdirp(to, stat.mode,...
Hello, using node-nan=2.10.0, node-8.11.1, node-gyp-3.6.2, I've this: ``` gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] make[2] : on entre dans le répertoire « /home/xavier/dev/debian/packages/waiting/mysql-libmysqlclient/node-mysql-libmysqlclient-1.6.0/build » CXX(target) Release/obj.target/mysql_bindings/src/mysql_bindings.o In...
Hello, when installing this module, I've the following errors: ``` npm install npm WARN package.json [email protected] license should be a valid SPDX license expression npm WARN deprecated [email protected]: Please update...
Hi, `request` is [deprecated](https://github.com/request/request/issues/3142). One way to replace it could be to use [node-fetch](https://www.npmjs.com/package/node-fetch): ```diff --- a/lib/sendToCoveralls.js +++ b/lib/sendToCoveralls.js @@ -1,6 +1,6 @@ 'use strict'; -const request = require('request'); +const...
Hi, for the record, here is a patch for commander 9 (to be applied after #158) : ```patch --- a/metadata/add-alias.js +++ b/metadata/add-alias.js @@ -1,6 +1,6 @@ module.exports = { alias:...
Hi, for the record, here is a patch for commander 8: ```patch --- a/bin/wb +++ b/bin/wb @@ -1,5 +1,5 @@ #!/usr/bin/env node -const program = require('commander') +const program = require('commander').storeOptionsAsProperties(true)...
Hello, I'm going to package aes-js for Debian. Could you please use GitHub tags for each release ? It is easier to follow changes for packagers. Regards, Xavier