-
-
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
build.files won't work as expected #701
Closed
just-jeb opened this issue
Aug 25, 2016
· 3 comments
· May be fixed by qcif/data-curator#563 or Omrisnyk/trinity-wallet#88
Closed
build.files won't work as expected #701
just-jeb opened this issue
Aug 25, 2016
· 3 comments
· May be fixed by qcif/data-curator#563 or Omrisnyk/trinity-wallet#88
Labels
Comments
This particular issue has been fixed. Still a problem here: empty directories (that are not specified in
|
@meltedspark Filed as #732 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would expect that if I specify
"files": ["*.js"]
, it would include all the.js
files in theapp
folder and its subfolders (similarly tofind -name
) into the build. However it includes only.js
files in theapp
folder (won't include the subfolders).Specifying
"files": ["**/*.js"]
causeselectron-builder
to include the wholeapp
folder into the build (i.e. the same as specifying"files": ["**/*"]
).Both options appear to not work in a right way, so I suppose there is a bug here.
The text was updated successfully, but these errors were encountered: