We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have multiple packages under the same npm scope, say:
@example/foo
@example/bar
As result, all packages under @example get unpacked.
@example
app.asar.unpacked/ node_modules @example/ foo/ bar/
although bar shouldn't.
bar
Running in debug mode: export DEBUG="electron-builder"; ./node_modules/.bin/build, it prints the following message:
export DEBUG="electron-builder"; ./node_modules/.bin/build
electron-builder node_modules\@example is not packed into asar archive - contains executable code
The text was updated successfully, but these errors were encountered:
Confirmed.
Sorry, something went wrong.
fix: Automatic unpack detection in scoped packages unpacks the entire…
515e0d6
… scope Close electron-userland#1540
3558b22
Thanks! Already tested it in v17.8.0 and it's working fine.
v17.8.0
Successfully merging a pull request may close this issue.
I have multiple packages under the same npm scope, say:
@example/foo
(with dlls)@example/bar
As result, all packages under
@example
get unpacked.although
bar
shouldn't.Running in debug mode:
export DEBUG="electron-builder"; ./node_modules/.bin/build
,it prints the following message:
The text was updated successfully, but these errors were encountered: