Skip to content

Commit 1370303

Browse files
authored
Merge pull request #12093 from quarto-dev/shiny/preview-reload
2 parents febb497 + cbb3392 commit 1370303

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

news/changelog-1.7.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ All changes included in 1.7:
4747
- ([#11835](https://github.com/quarto-dev/quarto-cli/issues/11835)): Take markdown structure into account when detecting minimum heading level.
4848
- ([#11964](https://github.com/quarto-dev/quarto-cli/issues/11964)): Using panel layout without a crossref label now correctly do not add an empty `#block[]` that was leading to an unnecessary space in output.
4949

50+
## Interactive Shiny Document
51+
52+
- ([#12059](https://github.com/quarto-dev/quarto-cli/issues/12059)): `quarto preview` now correctly run on Windows an interactive Quarto doc with Jupyter engine and py-shiny, when using a `*.py` file as resource.
53+
5054
## Lua Filters and extensions
5155

5256
- ([#11526](https://github.com/quarto-dev/quarto-cli/pull/11526)):

src/execute/jupyter/jupyter.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,8 +515,7 @@ export const jupyterEngine: ExecutionEngine = {
515515
];
516516
if (options.reload) {
517517
cmd.push("--reload");
518-
cmd.push(`--reload-includes`);
519-
cmd.push(`*.py`);
518+
cmd.push(`--reload-includes=*.py`);
520519
}
521520

522521
// start server

0 commit comments

Comments
 (0)