Skip to content

Commit ec42247

Browse files
committed
Revert "in quarto_inspect() don't coerce JSON array to dataframe and keep list of list"
This reverts commit 100518c.
1 parent 100518c commit ec42247

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

NEWS.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
# quarto (development version)
22

3-
## BREAKING CHANGES
4-
5-
- In `quarto_inspect()`, JSON array xith JSON object are not coerced to data.frame anymore. This ensure list is returned for all elements of `fileInformation` object.
6-
7-
## NEW FEATURES
8-
93
- Add `quarto.quiet` options to allow more verbose error message when `quarto_*` function are used inside other package.
104
For example, inside **pkgdown** for building Quarto vignettes. **pkgdown** sets `quiet = TRUE` internally for its call to `quarto_render()`,
115
and setting `options(quarto.quiet = TRUE)` allows to overwrite this.
126

13-
## MINOR CHANGES
14-
157
- `quarto_path()` now returns a normalized path with potential symlink resolved, for less confusion with `quarto_binary_sitrep()` (thanks, @jennybc).
168

179
- Fix an error with interactive prompt for extension approval (thanks, @wjschne, #212).

R/inspect.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ quarto_inspect <- function(input = ".",
4747

4848
res <- quarto_run(args, quarto_bin = quarto_bin)
4949

50-
jsonlite::fromJSON(res$stdout, simplifyDataFrame = FALSE)
50+
fromJSON(res$stdout)
5151
}

man/quarto_inspect.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)