When the command is run, it creates a package.json
with hard-coded values for name and description:
$ cat package.json
{
"name": "capacitor-app",
"version": "1.0.0",
"description": "An Amazing Capacitor App",
And when the packager is run, it generates folders based on the “name” value. Request that arguments be provided to set these values so that they don’t have to be edited by hand (or sed in a Github Action).
So something like:
npx cap add electron -name "myApp" -description "A bit of description"
Thanks for your consideration.