diff --git a/cog.toml b/cog.toml index a0b06d0bd..9ccc6dbac 100644 --- a/cog.toml +++ b/cog.toml @@ -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 } diff --git a/tools/update_version.sh b/tools/update_version.sh index 5181559e6..6f9b7f015 100755 --- a/tools/update_version.sh +++ b/tools/update_version.sh @@ -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) @@ -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/`, so we just specify workspace as `src/js` and it does the right thing npm version "$npm_version" --workspace=src/js ;;