The version command outputs information about your current Turboprisma version and platform. It provides useful information for us when debugging, so it is required in all GitHub issues that are reporting a bug.
Aliases
You may also use -v
instead of version
.
Flags
Here's a summary of the flags available for the version
command:
--json (Optional)
Outputs version information in JSON format so it can be parsed by other programs. This also disables colors for this output.
The schema for the JSON response is:
{
"platform"
: {
"os"
:
string
,
"arch"
:
string
// will either be x86_64 or aarch64
},
"turboprisma"
: {
"cli"
:
string
}
}