Issue:
When using process.stdout.write this includes % at the end of the output indicating the end of program. However, this could be confusing to the user if they need to manually generate a component signature.
# dummy example
process.stdout.write("Hello World"); // Hello World%
# live example
❯ prism components:signature
34593f3f1921a1ce32b2ece60f5b1bea1333acf9%
Solution:
Use oclifs way of logging output, however we'll need to account for the automatic line break it adds in spectral when generating the component manifest.
Issue: When using
process.stdout.write
this includes%
at the end of the output indicating the end of program. However, this could be confusing to the user if they need to manually generate a component signature.Solution: Use oclifs way of logging output, however we'll need to account for the automatic line break it adds in spectral when generating the component manifest.