Skip to content

Commit e5aea5d

Browse files
authored
fix: Move www/shared/py-shiny to www/py-shiny (#1499)
1 parent a00a350 commit e5aea5d

File tree

13 files changed

+10
-10
lines changed

13 files changed

+10
-10
lines changed

js/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ process.argv.forEach((val, index) => {
1010
}
1111
});
1212

13-
const outDir = "../shiny/www/shared/py-shiny";
13+
const outDir = "../shiny/www/py-shiny";
1414

1515
async function bundle_helper(
1616
options: BuildOptions

shiny/ui/_html_deps_py_shiny.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def data_frame_deps() -> HTMLDependency:
2121
version=__version__,
2222
source={
2323
"package": "shiny",
24-
"subdir": "www/shared/py-shiny/data-frame",
24+
"subdir": "www/py-shiny/data-frame",
2525
},
2626
script={"src": "data-frame.js", "type": "module"},
2727
)
@@ -33,7 +33,7 @@ def chat_deps() -> list[HTMLDependency]:
3333
version=__version__,
3434
source={
3535
"package": "shiny",
36-
"subdir": "www/shared/py-shiny/chat",
36+
"subdir": "www/py-shiny/chat",
3737
},
3838
script={"src": "chat.js", "type": "module"},
3939
stylesheet={"href": "chat.css"},
@@ -46,7 +46,7 @@ def autoresize_dependency() -> HTMLDependency:
4646
return HTMLDependency(
4747
"shiny-textarea-autoresize",
4848
__version__,
49-
source={"package": "shiny", "subdir": "www/shared/py-shiny/text-area"},
49+
source={"package": "shiny", "subdir": "www/py-shiny/text-area"},
5050
script={"src": "textarea-autoresize.js", "type": "module"},
5151
stylesheet={"href": "textarea-autoresize.css"},
5252
)
@@ -56,7 +56,7 @@ def page_output_dependency() -> HTMLDependency:
5656
return HTMLDependency(
5757
"shiny-page-output",
5858
__version__,
59-
source={"package": "shiny", "subdir": "www/shared/py-shiny/page-output"},
59+
source={"package": "shiny", "subdir": "www/py-shiny/page-output"},
6060
script={"src": "page-output.js", "type": "module"},
6161
)
6262

@@ -65,7 +65,7 @@ def spin_dependency() -> HTMLDependency:
6565
return HTMLDependency(
6666
"shiny-spin",
6767
__version__,
68-
source={"package": "shiny", "subdir": "www/shared/py-shiny/spin"},
68+
source={"package": "shiny", "subdir": "www/py-shiny/spin"},
6969
stylesheet={"href": "spin.css"},
7070
)
7171

File renamed without changes.

shiny/www/shared/py-shiny/chat/chat.css.map renamed to shiny/www/py-shiny/chat/chat.css.map

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

shiny/www/shared/py-shiny/chat/chat.js.map renamed to shiny/www/py-shiny/chat/chat.js.map

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

0 commit comments

Comments
 (0)