Conversation
kettanaito
commented
Oct 17, 2024
- Closes Incorrect "exports" in package.json #38
|
|
|
Hi, @pimterry 👋 Can you please help me with the module tests for this change? I'm not entire familiar with what you are using for that. Thanks! |
There's no formal framework. There's a single file of Mocha tests in test/, written in TypeScript, and there's scripts and to launch that same test file in various different ways for each env in package.json. We'd need a new script there, which runs those tests in Node via ESM. I'm not sure what the best approach to do that is - the only constraint is sharing the same test code (I'd really like to avoid duplicating this) but if you want to make separate Node vs Node-ESM entrypoints then that would be fine. Changes to the cross-compat code at the start of the test file (or even splitting it from the test implementations) is fine too, up to you. Since this isn't usable in old Node anyway, you could skip these tests in that case, and in that case you could also potentially use |
|
|
||
| // Create the esm node output | ||
| shell.rm('-rf', 'pkg'); | ||
| shell.exec('wasm-pack build --target experemintal-nodejs-module'); |
There was a problem hiding this comment.
Surely experemintal is a typo for experimental here