-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Conversation
…d, and bundle size optimized (~790Kb)
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.
…on, and getWeb3 function fixed
…s in package.json extended
I think our tests do help us to have the proof that we aren't missing something. The existing unit tests and the newly added e2e tests do give us enough proof. Additionally were three devs (me included) reviewing this PR.
Browserify, Parcel, or Webpack all of those are bundlers and all of those do add some polyfills if required or not. We will always have the possibility that one of those (whatever bundler we use for our browser tests) does add something we didn't expect he does. A simple test case which does only include the minified bundle and initiate the
Dependencies have to be excluded in normal CJS, ESM, or UMD bundles. Only the minified browser bundles do include them. This gives our
Because of node version 8 !== features last 2 browser versions.
Yes, I've tested it. If it wouldn't be tree-shakeable would it also not be possible to use this lib at all. This because the added ESM imports/exports are the only reason why it can get tree-shaked. But there is definitely still enough we could improve later.
Yes, I am.
I don't think it is that complex. 3 module structures, 2 rollup plugin setups, 2 babel configs.
I don't think this introduces any kind of instability or is there a specific example from you? Why are you making that assumption up that this will break stuff? |
@alcuadrado |
These are the supported browsers with defining of
|
There are multiple interconnected things going on in the comments, and some of them are hard to answer without paying attention to the bigger picture, so I'm answering many of them here. Supported browsers and babel config
You are right. I though you were talking about the last two versions of the major browsers, not the I reviewed the list of browsers that you posted (thanks for that!), and something caught my attention immediately: there are some unsupported (by their makers) browser with 0% market-share there. I started googling about it, and found this babel issue, and this site by one of the babel maintainers which explains why you shouldn't use that. The main thing is that Browserlist configThat article I linked is great, but somewhat old. Now browserlist has a recommended default query ( @babel/runtimeIf we use Syntax proposal pluginsWhile I think they are not worth it, I don't care much about them. I just wanted to raise the point that introducing things like this has to be addressed individually and discussed in the context of the project objectives. Adding this kind of things to a PR like this one prevents that discussion from happening, as no-one wants to block progress over a minor thing like that. I'll mark those comments as resolved because of that. |
This was the kind of thing I had in mind, yes. The ideal test suit would also run all the tests using the UMD build without any bundle.
I understand that that's the intention. But I don't follow what you did with the
This was addressed in my previous comment.
I'm glad you tested it, but I had to ask, as you didn't mentioned it. I think the PR description is a great place to do it.
I was mostly asking about the reason it can be removed, not trying to challenge you. Again, maybe the PR description would have been the right place to document this. It's still unclear to me why though. Can you clarify it?
Sorry, complex wasn't the right word. The configs itself don't seem complex, they are just very very hard to read. I don't have the complete picture in mind yet, just part of it, and I spent a few hours on them.
Every change introduces some instability, as there's always a possibility of breaking things. This doesn't mean that all of them break things though. But the bigger the PR, the more changes it makes, the higher the possibility of any of those changes going wrong. I don't assume that this is breaking anything though, otherwise I would be really explicit about it. I'm just trying to understand that this PR wrings, and in the meantime, being extra cautious. |
I created this issue ethereumjs/ethereumjs-config#21 to discuss this. Would you mind mention it there that you also think sources should be included, @nivida ? |
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.
@nivida
You've already identified this as a something to add in #3192- just copying over your review note
We can speed up the mentioned development process with adding of the build commands to all web3 packages to be able to watch or manually build a single package.
A simple test case which does only include the minified bundle and initiate the Web3 object without any pre-processor added etc. would probably give us a better proof if all deps are bundled correctly.
Yes - this would be a nice sanity check. But I think we still have to run tests across the body of the code since the build can be defective in a way that doesn't error until you try to execute something specific - #3155 is an example. The existing browserify setup (on 1.x) does detect that the 1.2.2 bundle is corrupted. If we remove the babel/polyfill added in Karma, the tests error as they should. I misdiagnosed this a meta problem because I thought the underlying bug had been fixed in #3062.
I agree with @alcuadrado that this is moving is really good direction, (it will be v. useful for helping with the build size) but also think that we should exercise caution with it and have a chance to use it a bit / think about it before publishing with it.
@alcuadrado Thanks for such a thorough review! Great. 💯
@nivida This is a really substantial block of work, very important. 🏅
Great! Thanks for checking this closer! Browserlist itself does use the following query for browsers Node versions:
Browsers and versions:
The
I would probably recommend to not use the
Yep, you are. Quote from the Babel documentation:
Great thanks! I will next time update the PR description for a second review to explain such changes closer instead of waiting until the reviewer is asking.
I think you quoted the wrong comment from our discussion. But yes we were misunderstanding us. I was talking about the normal dependencies and that those only have to be included in the minified browser bundles. Just for those who come by: The
Yes, I've proposed this PR a while ago and created a correct PR description. After the first review and some smaller discussions with @cgewecke did we sadly change the base setup and I didn't update the PR description after. Sorry for this confusion.
The
Okay, you struggled with the code complexity and not with the configuration complexity itself. Yes, the config "generator" can be written in a cleaner more readable way. I will improve the readability of the config "generator" asap. :)
I see. It was thought of as a cautionary reminder. 👌
I think the source map in the published NPM package should point on the dist file instead of the actual sources. But yes, I will drop a comment there and probably also do it as the first ethereumjs task 👌
Those capabilities are already implemented and a global watch script which doesn't bring your PC on fire got added as well ;)
Yep, same here. I will check your hotfix PRs and release them later this evening (CEST) or tomorrow morning. I think this PR is the first step of the cleanup and brings a modern build pipeline to this project. Can't wait to improve it more after ;) |
…the root rollup dep
…orking tree-shaking since the module structure change
@cgewecke @alcuadrado I've updated the targeted browsers in the babel config, checked the dedupe rules after the module structure change, and removed the rollup devDep from all packages. I will keep the current structure of the rollup config "generator". We can improve this later more when we restructured the project to a simpler folder/package structure. Edit: |
@nivida and I discussed this in a meeting on Nov 25. The main purpose of this PR is to reduce the build-size to address #1178. The main blocker is reviewer fear of its size & scope. Producing cjs & umd modules is the source of much of the complexity here. There are size-reduction benefits to these. Unfortunately it turns out tree-shaking didn't make the bundle that much smaller - @nivida estimated it was a few percent. TLDR; one way forward is to use all the work here as a source but open a new PR (or PRs) with a more modest goal...
Proceeding this way means we can
|
I've closed this PR because the changes here were too big but the branch will still exist. We will slowly apply the improvements from this branch to the current build pipeline as for example with PR #3261. |
@nivida how is this coming up? I'm particularly interested in the esm import feature |
Fixes #3155 #3074 #2623 #1178
Description
Because of repeating issues (#3155) we had with the minified bundle did I back-port and extend the build pipeline of the 2.x branch.
Key Facts:
eventemitter3
dependency updated in PromiEvent packageENS.js
moved toindex.js
for consistency reasonsScripts
build:web3
- Creates just the CJS and ESM bundle of the web3 umbrella packagebuild:web3:minified
- Creates all CJS and ESM bundles of all packages and creates a web3.min afterbuild:all
- Creates CJS and ESM bundles for all packagesbuild:all:cjs
- Creates CJS bundles for all packagesbuild:all:esm
- Creates ESM bundles for all packagesbuild:all:minified
- Creates minified UMD bundles with thecjs
bundles as the source for all packagesbuild:all:release
- Creates CJS, ESM, and minified UMD bundles for all packages without instrumenting the code for theistanbul
code coverage report.New Package Entries
main
require(...)
and does have the CJS module format.module
unpkg
unpkg
CDN and does contain the minified UMD formatted bundle.jsdelivr
jsdelivr
CDN and does contain the minified UMD formatted bundle.Rollup Config Setup
The base configuration is located in the root folder of this repository and does return the configuration function which will be used in each package of this project.
Properties of the config function:
name: string
outputFileName: string
globals?: {[key: string]: string}
dedupe?: string[]
namedExports?
: boolean``Example Usage: