Open tpluscode opened 1 year ago
I have mappings in nested dir structure which results in the following, including the generated output
/ ├── mappings/ │ ├── dimensions/ │ │ ├── customer.xrm │ │ └── product.xrm │ └── facts.xrm └── src-gen/ ├── customer.csv.meta.json ├── facts.csv.meta.json └── product.csv.meta.json
Instead, I expected the directory dimensions to be kept in src-gen:
dimensions
src-gen
/ ├── mappings/ │ ├── dimensions/ │ │ ├── customer.xrm │ │ └── product.xrm │ └── facts.xrm └── src-gen/ ├── dimensions/ │ ├── customer.csv.meta.json │ └── product.csv.meta.json └── facts.csv.meta.json
I have mappings in nested dir structure which results in the following, including the generated output
Instead, I expected the directory
dimensions
to be kept insrc-gen
: