-
Notifications
You must be signed in to change notification settings - Fork 35
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
createBroadcast is not a function #5
Comments
Wondering how this ever worked, because @iamstarkov is not using es6 imports, he uses require, but brcast is exporting a default using es6 export default https://github.com/vesparny/brcast/blob/master/index.js#L1 which means when importing with require one would need to write @iamstarkov I think in any case its better to use import statements. |
@kof That's the reason why it was working I guess. |
Then in some way @kentcdodds is not using that main module on the playground. |
I just looked at the theming Files are only transpiled with babel, but dependencies are not bundled. |
Hmmm... The weird thing to me is that the line that requires |
Time to plug rollup. @iamstarkov you can take a look at this config I use on another project. https://github.com/vesparny/rxhr/blob/master/rollup.config.js I export Not sure Maybe @kentcdodds knows more. |
@kentcdodds you will still miss |
+1, it's the best for libraries 👍 glamorous has a good rollup config too. |
You'll notice that I actually explicitly add that to my dependencies in the sandbox so it should be working. Also, it's included in the |
uhm...if |
[email protected] has been built and published the same way as 1.0.0 and it works in webpackbin https://www.webpackbin.com/bins/-Km8TglfWP84oYhDquT1 |
though [email protected] doesnt. i will investigate |
IMO, the safest solution is for you to use See also facebook/create-react-app#2485, they specifically stop Webpack from using that entrypoint because it seems to cause other problems as well. |
okay |
i guess, i need to expose both |
1.0.1 is ahead |
It's complicated and I'm not very knowledgable on the subject, but form the webpack docs:
So a "babel-ified" version of your package but with Source: https://webpack.js.org/guides/author-libraries/#final-steps |
The reason is that webpack will "transpile" modules (ESM, CommonJS, AMD), but nothing else. |
You can look at what we're doing over on glamorous with Rollup. We have a bit of a complicated setup with rollup, but it means that we can have several output variations and a great API for any module system (that doesn't require people to reference |
Makes more sense to me now after reading more closely through the second link from my previous comment. Would probably be a good idea to take a similar approach to glamorous. |
This article's also relevant |
I provided a PR to get the ball rolling. |
Whoops 😀 Well, I think they're pretty much the same with different tools. |
@gertt missed entry points is a good catch, added it just now |
I prefer a rollup solution as the end result will be smaller and faster. |
@kentcdodds im not quite sold by rollup for libs. can you explain a bit more why bundling libs will make apps smaller? i think if all libs are bundled on their own, then apps' bundles will be quite huge. Isnt it enough that package provide esm version, and then it doesn't matter at which step tree shaking will happen. am i right? |
while we all are here, can you try and verify that temporary package |
to clarify about rollup: im not against rollup, i just dont understand how bundling can help more than es modules |
The biggest thing is that rollup is capable of doing what's called "scope hoisting." I don't have time to go into it now, but I found this blogpost which I think explains it :) |
Btw. webpack soon too. |
So excited! |
If I understand correctly, the upsides of rollup are: Tree shaking Removes unused code from included dependencies. Which is only useful if you include the dependencies in the bundle. For example if @iamstarkov wants to provide a special browser bundle that can be loaded with a script tag instead of included in projects that use webpack/rollup/... themselves. Scope hoisting Moves all code into the same scope, making for a smaller bundle with less nesting etc which would also make it a bit faster. Downside? You can't do For me personally, most of the projects I work on would fall into the latter category. But that does not necessarily have to mean anything 😀 |
I think the upside of @iamstarkov's approach is that it leaves the choice up to the user:
|
well, both pull-requests successfully solve this issue. As @gertt mentioned consumers' apps will benefit from both if they use rollup. To add to that, i'm more familiar with babel than with rollup. And anyway, switch between babel and rollup is quite easy, so if one time in the future we will need rollup build, thats gonna be easy. That said, i would stick to my PR. what do you think? |
Sounds fine |
v1.0.1 is out there |
I really have no idea what's going on. But when I tried hooking this up with glamorous here I'm getting:
The problem is in this file.
It's tricky debugging in codesandbox, but this is what the code looks like:
You'll see that I have a breakpoint on where we're requiring
createBroadcast
but that breakpoint never hits and it hits the_this.broadcast = ...
line first. Quite odd. Not sure what's going on here.The text was updated successfully, but these errors were encountered: