-
Notifications
You must be signed in to change notification settings - Fork 287
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
npm init -- --app
should create an "install"
hook
#1042
Comments
Should it be |
Libraries aren't built on demand, they're built remotely on the CI/CD server across the full platform matrix and the binaries are published separately. The library itself doesn't require any local build process. For apps, I think you're right that |
I added this to #1041. |
The |
The For libs, we can't make use of a publish hook because it's synchronous, and libs need to fork off a bunch of remote prebuilds running on CI/CD servers. So publishing is actually done via CI/CD instead of locally. But if you can think of a way to do this with an |
Is there some other hook we can use that always gets run when you locally pull for both types? |
Can you say more? I don't quite know what you mean by locally pull. |
Followup: based on discussion in #1041, we agreed that this isn't a great idea after all. Rationale:
|
- small cleanups to `inferOrg` regexp logic - revert the `"prepare"` hook for --app (see #1042 (comment) )
There's no
"install"
hook for--app
projects created by the newcreate-neon
.The text was updated successfully, but these errors were encountered: