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.
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