This is an automated email from the ASF dual-hosted git repository. elizabeth pushed a commit to branch elizabeth/fix-resize-bug in repository https://gitbox.apache.org/repos/asf/superset.git
commit ef0db5e09d961b68a0c3f2832a53c53ac7d37f27 Author: Evan Rusackas <[email protected]> AuthorDate: Fri Jul 25 09:48:05 2025 -0700 fix(npm): more reliable execution of `npm run update-maps` (#34305) --- superset-frontend/package.json | 2 +- .../scripts/Country Map GeoJSON Generator.ipynb | Bin 11105571 -> 2319015 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/package.json b/superset-frontend/package.json index afb03d6326..40fdaf564b 100644 --- a/superset-frontend/package.json +++ b/superset-frontend/package.json @@ -72,7 +72,7 @@ "test": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=8192\" jest --max-workers=80% --silent", "test-loud": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=8192\" jest --max-workers=80%", "type": "tsc --noEmit", - "update-maps": "jupyter nbconvert --to notebook --execute --inplace 'plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb' -Xfrozen_modules=off", + "update-maps": "cd plugins/legacy-plugin-chart-country-map/scripts && jupyter nbconvert --to notebook --execute --inplace --allow-errors --ExecutePreprocessor.timeout=1200 'Country Map GeoJSON Generator.ipynb'", "validate-release": "../RELEASING/validate_this_release.sh" }, "browserslist": [ diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb index 6839ca2655..88167416ab 100644 Binary files a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb and b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb differ
