We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g.
tplant --input test/Playground/Inheritance/*.ts --output test/Playground/Inheritance.svg
results in a single box, that describes the Animal class.
tplant --input test/Playground/Inheritance/*.ts --output test/Playground/Inheritance.puml
results in:
@startuml class Animal { +name: string +move(distanceInMeters?: number): void } @enduml
Presumably there should be other boxes, such as Horse.
Running on Win 10, via MINGW64 git-bash terminal window.
The text was updated successfully, but these errors were encountered:
UPDATE: I discovered that specifying Horse.ts does better:
tplant --input test/Playground/Inheritance/Horse.ts --output test/Playground/Horse.puml
outputs:
@startuml class Animal { +name: string +move(distanceInMeters?: number): void } class Horse extends Animal { +move(distanceInMeters?: number): void } @enduml
Likewise, ".svg" output shows two boxes, with arrow from Horse to Animal.
Sorry, something went wrong.
You need to wrap your glob in single quotes: tplant --input 'test/Playground/Inheritance/*.ts' --output test/Playground/Inheritance.svg
tplant --input 'test/Playground/Inheritance/*.ts' --output test/Playground/Inheritance.svg
This is because your shell is immediately converting the glob string to the first matching file (test/Playground/Inheritance/Animal.ts).
No branches or pull requests
E.g.
results in a single box, that describes the Animal class.
results in:
Presumably there should be other boxes, such as Horse.
Running on Win 10, via MINGW64 git-bash terminal window.
The text was updated successfully, but these errors were encountered: