You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2019. It is now read-only.
When publishing npm packages under a single-character folder in root directory, fstream-npm generates malformed tarball package without the "package" directory in package.tgz.
When publishing a package under e:/t/foo, entry.path.substr(h.length + 1) evaluates to /foo and entry.path then becomes e:/foo, while it was expected to be e:/package/foo.
When publishing npm packages under a single-character folder in root directory,
fstream-npmgenerates malformed tarball package without the "package" directory in package.tgz.Check out https://github.com/npm/fstream-npm/blob/master/fstream-npm.js#L355
When publishing a package under
e:/t/foo,entry.path.substr(h.length + 1)evaluates to/fooandentry.paththen becomese:/foo, while it was expected to bee:/package/foo.