I'm trying to start editing Google Apps scripts that are bounded to Google Sheets.
I don't understand the part where it is documented that
Structure Code. clasp automatically converts your flat project on script.google.com into folders. For example: On script.google.com:
├── tests/slides.gs
└── tests/sheets.gs
Locally:
├── tests/
│ ├─ slides.gs
│ └─ sheets.gs
When I see my projects on script.google.com they are just listed by the name, I don't see any folder structure.
I was able to to a clasp clone PROJECT_ID and it downloaded 3 files
Cloned 3 files.
└─ appsscript.json
└─ Code.js
└─ Old Code.js
exactly to the folder where I ran the clasp command.
I don't see how it creates folders for me..
Should I be creating one folder per script?
Thanks in advance