-
Notifications
You must be signed in to change notification settings - Fork 116
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
feat(core): a core bundle #138
Conversation
This pull request is being automatically deployed with ZEIT Now (learn more). 🔍 Inspect: https://zeit.co/twilio-dsys/paste/7c6ka3sb2 |
} | ||
|
||
// Main | ||
(async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reading this function explains the main procedure that happens right before a build is triggered on this package.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using private, version, and blacklisted seems like a good way to handle that filter. I like it.
The |
This PR adds a "Core bundle". This was added to make it easier to start using Paste by combining all of our packages into a single import.
The general approach I took to making this work was by using Lerna to fetch all the packages in our monorepo. I then filter some out and proceed to generate the
package.json
andindex.tsx
files.Open questions: