Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Move www/shared/py-shiny to www/py-shiny #1499

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ process.argv.forEach((val, index) => {
}
});

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

async function bundle_helper(
options: BuildOptions
Expand Down
10 changes: 5 additions & 5 deletions shiny/ui/_html_deps_py_shiny.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def data_frame_deps() -> HTMLDependency:
version=__version__,
source={
"package": "shiny",
"subdir": "www/shared/py-shiny/data-frame",
"subdir": "www/py-shiny/data-frame",
},
script={"src": "data-frame.js", "type": "module"},
)
Expand All @@ -33,7 +33,7 @@ def chat_deps() -> list[HTMLDependency]:
version=__version__,
source={
"package": "shiny",
"subdir": "www/shared/py-shiny/chat",
"subdir": "www/py-shiny/chat",
},
script={"src": "chat.js", "type": "module"},
stylesheet={"href": "chat.css"},
Expand All @@ -46,7 +46,7 @@ def autoresize_dependency() -> HTMLDependency:
return HTMLDependency(
"shiny-textarea-autoresize",
__version__,
source={"package": "shiny", "subdir": "www/shared/py-shiny/text-area"},
source={"package": "shiny", "subdir": "www/py-shiny/text-area"},
script={"src": "textarea-autoresize.js", "type": "module"},
stylesheet={"href": "textarea-autoresize.css"},
)
Expand All @@ -56,7 +56,7 @@ def page_output_dependency() -> HTMLDependency:
return HTMLDependency(
"shiny-page-output",
__version__,
source={"package": "shiny", "subdir": "www/shared/py-shiny/page-output"},
source={"package": "shiny", "subdir": "www/py-shiny/page-output"},
script={"src": "page-output.js", "type": "module"},
)

Expand All @@ -65,7 +65,7 @@ def spin_dependency() -> HTMLDependency:
return HTMLDependency(
"shiny-spin",
__version__,
source={"package": "shiny", "subdir": "www/shared/py-shiny/spin"},
source={"package": "shiny", "subdir": "www/py-shiny/spin"},
stylesheet={"href": "spin.css"},
)

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.

Large diffs are not rendered by default.

Loading
Loading