-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separate build config from package.json #1109
Comments
What do you think about |
Yeah that would be great 👍 Haven't really seen the YAML usage in JS world a lot, but it has its advantages. I would support json as well though. People will be able to migrate between their "build" part in |
You can write JSON in the yaml, you don't need to learn new syntax. |
Did not realize that, thanks. :) |
I am going to add support for |
Hi @develar, when is this going to be available in |
Currently no cli arg, just create file electron-builder.yml in the project root. |
Allright, that does work. |
Hi @develar, are there any plans to add |
I think it might be nice thing to consider to separate the
build
frompackage.json
to a separate file, e.g.build.json
. It could be optional in a way that eitherbuild
key inpackage.json
orbuild.json
would apply if present, similar to whatava
has. What do you think?It could make large
package.json
s more readable. If we already have 250 lines inpackage.json
another 50-100 lines for build config make it quite unreadable.I did a quick search in issues and couldn't find anything related, so sorry if this has already been discussed here.
The text was updated successfully, but these errors were encountered: