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
I just cloned the repo and then > npm i and got the following error message.
> [email protected] build:cjs /Users/kmabonzo/Hacking/js/sander
> rollup -c -f cjs -o dist/sander.cjs.js
A module cannot have multiple exports with the same name ('createReadStream')
Error: A module cannot have multiple exports with the same name ('createReadStream')
at /Users/kmabonzo/Hacking/js/sander/node_modules/rollup/src/Module.js:83:13
Searching the source code, I found the following:
/Users/tmk/Hacking/js/sander/src/sander.js:
7 export const chmod = asyncMethod( 'chmod' );
8 export const chown = asyncMethod( 'chown' );
9: export const createReadStream = asyncMethod( 'createReadStream' );
10 export const createWriteStream = asyncMethod( 'createWriteStream' );
11 export const lchmod = asyncMethod( 'lchmod' );
..
62
63 // special methods
64: export { createReadStream, createWriteStream } from './specialMethods/createReadStream-createWriteStream'; // TODO aren't these covered by the standard methods?
I just cloned the repo and then
> npm i
and got the following error message.Searching the source code, I found the following:
FYIW I'm trying to debug gobblejs/gobble#89
The text was updated successfully, but these errors were encountered: