vechain-sdk-js
vechain-sdk-js copied to clipboard
Be OS Agnostic
The file apps/sdk-node-integration/package.json defines in the scripts.build the linux/unit specific command
rm -rf ./dist && tsup src/index.ts --format cjs,esm --dts
to be executed in the OS shell/terminal. Both the command rm invoked and the way the arguments are passed with -- are OS specific, where Windows uses del for rm and / for -.
Tasks:
- Find an approach to treat all users regardless of OS as the same
- Update the readme to remove the Windows user specific steps
Links:
- Related research: https://github.com/vechain/vechain-sdk-js/issues/759