feat(clustering): Enable clustering on inventary layer#174
feat(clustering): Enable clustering on inventary layer#174david-bretaud-dev wants to merge 3 commits into
Conversation
| @@ -0,0 +1,11 @@ | |||
| // Façade file to export coordo content | |||
| // This helps for local development where only one path has to be updated | |||
| export { | |||
There was a problem hiding this comment.
I'm not sure to understand why this is helpful
There was a problem hiding this comment.
IDK about your codebase, but mine is like this:
codebase/14_Data4Trees/
codebase/Coordonnees/
To test a new feature from Coordonnées, I usually change the import path for coordo from coordo to ../../../../Coordonnees/coordo-ts/src (e.g I use my local coordo from my filesystem). Easier before pushing any new tag.
The pain is that if we import coordo from multiplace, sometimes to not have ts issues I have to change the path in different locations, and it's a burden (then to remove).
Here, I'm just making a single entry point to the coordo lib. Usually we do this to create an abstraction call Facade that makes the API usage easier (https://refactoring.guru/design-patterns/facade/typescript/example). It's kind of a facade here, that just re-export stuff 😁
9ede9a8 to
95e79f5
Compare
|
Need rebase and reinstall coordo 0.6.0 on backend and frontend side (the tag changed) |
PoC, cf PR on coordonnées which contains the complexity: dataforgoodfr/Coordonnees#89