ArgumentParser: You can now instantiate the ArgumentParser without needing to use the new keyword, making your code cleaner and more intuitive. Both var parser = ArgumentParser() and var parser = new ArgumentParser() will work the same way!
Improvements
Argument Parsing: The parser now correctly handles arguments with an equal sign, improving the flexibility of how you can define paths and options. This change ensures that you can use paths like '--examplepath="C:\myfolder\env=x64"' without issues.
Fixes
Fix two failing tests under io.js: We resolve issues with error message formatting that caused tests to fail, ensuring compatibility with the latest Node.js versions.
Fix minor typo in test description: Corrected a small typo in the test description to enhance clarity.