Skip to content
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
1 change: 1 addition & 0 deletions cog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ auth-keyclock = { path = "plugins/auth-keyclock", public_api=false }
dashboard-object-viewer = { path = "plugins/dashboard-object-viewer", public_api=false }
json = { path = "plugins/json", public_api=false }
matplotlib = { path = "plugins/matplotlib", public_api=false }
pivot = { path = "plugins/pivot", public_api=false }
plotly = { path = "plugins/plotly", public_api=false }
plotly-express = { path = "plugins/plotly-express", public_api=false }
table-example = { path = "plugins/table-example", public_api=false }
Expand Down
4 changes: 2 additions & 2 deletions tools/update_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function update_file() {
extra=
[ "$dev" = true ] && extra=".dev0"
case "$package" in
ag-grid | json | matplotlib | plotly | plotly-express | ui | utilities | packaging)
ag-grid | json | matplotlib | pivot | plotly | plotly-express | ui | utilities | packaging)
update_file "${package}/setup.cfg" 'version = ' '' "$extra"
;;
auth-keycloak | dashboard-object-viewer | table-example)
Expand All @@ -130,7 +130,7 @@ esac
npm_version="${version}"
if [ "$dev" != true ]; then
case "$package" in
ag-grid | auth-keycloak | dashboard-object-viewer | matplotlib | plotly | plotly-express | table-example | ui)
ag-grid | auth-keycloak | dashboard-object-viewer | matplotlib | pivot | plotly | plotly-express | table-example | ui)
# The working directory is already `plugins/<package-name>`, so we just specify workspace as `src/js` and it does the right thing
npm version "$npm_version" --workspace=src/js
;;
Expand Down
Loading