-
Notifications
You must be signed in to change notification settings - Fork 410
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
Allow skipping .gitignore
generation
#728
Comments
Actually... I realised that this is easily worked around by using one-off |
I still think this would be nice to have. |
Same, I'd like to generate only the wasm and js and skip all the extra stuff since I'm not using npm |
|
💡 Feature description
Since implementing self-
.gitignore
generation in #473, I've come across few codebases that prefer not to publish npm artifacts elsewhere nor integrate Rust build into their build process, but keep any artifacts in the Git repo.I suggest adding
--no-gitignore
option for such usecases.Alternative
Since in such cases module is not intended to be published anywhere, another alternative could be to implement this (omit
.gitignore
) as part of--no-pack
implementation proposed here #691.cc @ashleygwilliams
The text was updated successfully, but these errors were encountered: