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'm often building my packages on CI with --locked / --frozen after the dependencies have been downloaded.
--locked
--frozen
I'd like to do the same with wasm-pack but currently there is no way to pass extra args to underlying cargo command.
wasm-pack
cargo
I think it would make sense to be able to pass extra arbitrary args after -- as many other wrappers do, so that one could run:
--
$ wasm-pack build wasm-folder -- --frozen
The text was updated successfully, but these errors were encountered:
I would like to use it too
Sorry, something went wrong.
i'm amenable to this for sure and once i get 0.6.0 out the door we can plan this for the next release!
thanks to an unforeseen issue with the release last night which gave us some time to think on design, we'll be able to get this into 0.6.0.
Successfully merging a pull request may close this issue.
💡 Feature description
I'm often building my packages on CI with
--locked
/--frozen
after the dependencies have been downloaded.I'd like to do the same with
wasm-pack
but currently there is no way to pass extra args to underlyingcargo
command.💻 Basic example
I think it would make sense to be able to pass extra arbitrary args after
--
as many other wrappers do, so that one could run:The text was updated successfully, but these errors were encountered: