Rearrange structure of the project
Previously:
- api
...
- Components
- Canvas
- edition
- Execution
- Frontpage
- General
...
- CustomEdges
- CustomNodes
...
The structure had several drawbacks:
- The
Components
folder is misnamed since it also containsutils
andtypes
- Some components (
CustomEdges
andCustomNodes
) were out of theComponents
folder - There is a hierarchy of components due to introduction of
edition
andexecution
pages which was not respected.
Now:
- api
...
- edition
- Canvas
- CustomEdges
- CustomNodes
...
- execution
- frontpage
- general
...
- Edition components, models and types are in the
edition
folder. Same forexecution
. - Components not related to a particular page (like
frontpage
,general
andsuspense
) are in folders on the same level asedition
andexecution
. Although it remains to be checked that some edition components are not ingeneral
. - Top-level folder names are now all lowercase
Edited by Loic Huder