Nesopie

Results 4 comments of Nesopie

I've tested out the other commands and they work fine too, @junderw can you have a look?

Hey! The devDependency I used to run ts files, i.e. `tsx` is not supported on lower versions of node so tests start failing on those versions (passes on lts) in...

Import statements only work in esm modules (if you have `"type": "module"` in package.json). For CJS can you try this instead? ```js const bs58 = require("bs58").default; bs58.encode(Buffer.from("test", "utf8")); ```

@arijoon can you share minimal working reproduction? You can import CJS modules using ESM syntax