jovotech / jovo-cli

🛠 Command Line Interface for the Jovo Framework: Makes voice experience deployment a breeze, including features like local development and staging.
https://www.jovo.tech/marketplace/jovo-cli
Apache License 2.0
57 stars 31 forks source link

File builder don't built all files #348

Open kouz75 opened 1 year ago

kouz75 commented 1 year ago

I'm submitting a...

Expected Behavior

Following current doc: https://www.jovo.tech/docs/project-config#file-builder We should be able to create files during build phase. Following AlexaCli config should generate 3 folders and 3 files in "skill-package" directory. ` plugins: [ new AlexaCli({ skillId: "", endpoint: "${JOVO_WEBHOOK_URL}", files: { 'skill-package/a/test1.json':{ "a":"Hello World!" }, 'skill-package/b/test2.json':{ "b":"Hello World!" }, 'skill-package/c/test2.json':{ "c":"Hello World!" } } ...

`

Current Behavior

running build command: "jovo build:platform alexa --stage=dev" While create only the last files (skill-package/c/test2.json) other files are ignore.

Your Environment