dosubot[bot] commented on issue #38118: URL: https://github.com/apache/superset/issues/38118#issuecomment-3932564202
<!-- Answer --> The `isGeoStylerFunction` export doesn't actually exist in the Superset codebase itself - this suggests a dependency version mismatch. Could you check a few things? 1. **Verify your npm version** - [Superset requires npm ^10.8.1](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/package.json#L355-L356): ```bash npm --version ``` 2. **Check the installed geostyler-style version** - it should be exactly [7.5.0](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/package.json#L144): ```bash cat node_modules/geostyler-style/package.json | grep version ``` 3. **Also check for duplicate/nested copies** that might be conflicting: ```bash find node_modules -name "geostyler-style" -type d ``` If you see multiple geostyler-style directories or a different version than 7.5.0, that's likely the root cause. The transitive dependency `geostyler-qgis-parser` may be pulling in an incompatible version. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/ea579369-bd44-4dbd-90a1-e8b5f1eb4028?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/ea579369-bd44-4dbd-90a1-e8b5f1eb4028?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/ea579369-bd44-4dbd-90a1-e8b5f1eb4028?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/ea579369-bd44-4dbd-90a1-e8b5f1eb4028?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/ea579369-bd44-4dbd-90a1-e8b5f1eb4028?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/ea579369-bd44-4dbd-90a1-e8b5f1eb4028?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/ea579369-bd44-4dbd-90a1-e8b5f1eb4028?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github) [](https://cursor.com/link/prompt?text=The%20%60isGeoStylerFunction%60%20export%20doesn%27t%20actually%20exist%20in%20the%20Superset%20codebase%20itself%20-%20this%20suggests%20a%20dependency%20version%20mismatch.%20Could%20you%20check%20a%20few%20things%3F%0A%0A1.%20%2A%2AVerify%20your%20npm%20version%2A%2A%20-%20%5BSuperset%20requires%20npm%20%5E10.8.1%5D%28https%3A//github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/package.json%23L355-L356%29%3A%0A%20%20%20%60%60%60bash%0A%20%20%20npm%20--version%0A%20%20%20%60%60%60%0A%0A2.%20%2A%2ACheck%20the%20installed%20geostyler-style%20version%2A%2A%20-%20it%20should%20be%20exactly%20%5B7.5.0%5D%28https%3A//github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/packag e.json%23L144%29%3A%0A%20%20%20%60%60%60bash%0A%20%20%20cat%20node_modules/geostyler-style/package.json%20%7C%20grep%20version%0A%20%20%20%60%60%60%0A%0A3.%20%2A%2AAlso%20check%20for%20duplicate/nested%20copies%2A%2A%20that%20might%20be%20conflicting%3A%0A%20%20%20%60%60%60bash%0A%20%20%20find%20node_modules%20-name%20%22geostyler-style%22%20-type%20d%0A%20%20%20%60%60%60%0A%0AIf%20you%20see%20multiple%20geostyler-style%20directories%20or%20a%20different%20version%20than%207.5.0%2C%20that%27s%20likely%20the%20root%20cause.%20The%20transitive%20dependency%20%60geostyler-qgis-parser%60%20may%20be%20pulling%20in%20an%20incompatible%20version.) [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/38118) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
