-
DescriptionA user is working across multiple computers and updates Quarto on one computer but forgets to do so on the other. They then begin using the second computer, and re-render an existing document or project, thereby downgrading the Quarto version. I think this would be good to integrate into the CLI so that things don't break when new features are released. I did my best to dig in and see if there is checking and I just haven't encountered it yet, but I didn't find anything related to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
https://github.com/quarto-dev/quarto-cli/blob/main/src/command/render/render-files.ts#L108 It takes a semver-compatible string. It's meant to be used in projects, like so: https://quarto.org/docs/extensions/project-types.html#complete-example but it works in individual documents as well. |
Beta Was this translation helpful? Give feedback.
https://github.com/quarto-dev/quarto-cli/blob/main/src/command/render/render-files.ts#L108
It takes a semver-compatible string. It's meant to be used in projects, like so: https://quarto.org/docs/extensions/project-types.html#complete-example but it works in individual documents as well.