Skip to content
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

fix: provide browser versions independent from module system #380

Merged
merged 1 commit into from Feb 25, 2020

Conversation

TrySound
Copy link
Member

Probably will fix #378

Currently main field is used for node and module for browser build. This
is not entierly correct. Webpack can be used to build node apps. Though
module is always preferred over main. For browser versions there is a
special field.

In this diff I added esm support for both node and browser.
rollup-plugin-node-resolve look at browser field as well and prefer it
to bundle umd.

Copy link
Member

@ctavan ctavan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TrySound thank you for working on this, in general the proposed changes look

Using webpack/rollup to bundle for Node.js was indeed not considered yet from our part.

In fact we did use the browser field in package.json in the previous version of UUID and it looks like it is the only way to solve the issues around #378.

It would be great if you could amend the commit message and add references to the documentation of webpack and rollup where the precise usage of the browser fields is documented, I believe that would be:

package.json Outdated Show resolved Hide resolved
scripts/build.sh Outdated
@@ -14,21 +14,12 @@ mkdir -p "$DIR"
# Transpile CommonJS versions of files
babel --env-name commonjs src --source-root src --out-dir "$DIR" --copy-files --quiet

# Transpile ESM versions of files for the browser
babel --env-name esm src --source-root src --out-dir "$DIR/esm-browser" --copy-files --quiet
# Transpile ESM versions of files
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Transpile ESM versions of files for use with module bundlers as we do not yet support native Node.js esmodules.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should support bundlers with node target.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The point that I wanted to make is that this is still designated for module bundlers and not https://nodejs.org/api/esm.html

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So: I agree we should not restrict this to browser but the esm build here is still targeted at module bundlers!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, though commonjs browser stuff can be used by browserify unless it supports modules too.

@ctavan
Copy link
Member

ctavan commented Feb 25, 2020

Also, please rebase as master has changed meanwhile.

@TrySound TrySound force-pushed the browser-versions branch 2 times, most recently from 3d2edbc to 455604e Compare February 25, 2020 13:40
@TrySound
Copy link
Member Author

@ctavan Added links to commit message. Tests look unstable, not related to my changes.

@ctavan
Copy link
Member

ctavan commented Feb 25, 2020

@TrySound the code looks good, the build errors are due to lacking Browserstack credentials from your fork. I still have to figure out how to proceed with that.

@ctavan ctavan self-requested a review February 25, 2020 15:24
Copy link
Member

@ctavan ctavan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TrySound I tried out your changes locally and while they seem fine for use with module bundlers they unfortunately break the native browser esmodule support that is showcased in https://github.com/uuidjs/uuid/blob/master/examples/browser-esmodules/example.js

I fear we may have to go back to two builds:

./dist/esm-node/
./dist/esm-browser/

in order to support esmodules natively in both the browser and (eventually) node without bundlers. What do you think?

@TrySound
Copy link
Member Author

You mean changed paths is breaking change?

@TrySound
Copy link
Member Author

Ah, got it. Browsers do not get right paths.

@TrySound
Copy link
Member Author

Ok, I can do it.

@ctavan
Copy link
Member

ctavan commented Feb 25, 2020

No: The thing is that so far we only had one esm build designated at the browser where the browser-specific files have been renamed to just replace the node-specific files. That way, you could use the ESM build directly in the browser.

With your change, you rely on the browser field in package.json which is respected by all relevant bundlers but browsers with native esmodules support don't care about that.

So unfortunately your change breaks the opportunity to use esmodules directly in the browser as shown in the example: https://github.com/uuidjs/uuid/blob/master/examples/browser-esmodules/

Since we don't have the nice workaround of relying on the browsers field we may need to build two separate esmodule variants: one that can natively be consumed by the browser and one that can natively be consumed by node. We can then still make use of the browser field in package.json in order to point module bundlers to the correct files for all environments.

Probably will fix uuidjs#378

Currently main field is used for node and module for browser build. This
is not entierly correct. Webpack can be used to build node apps. Though
module is always preferred over main. For browser versions there is a
special field.

In this diff I added esm support for both node and browser.
rollup-plugin-node-resolve look at browser field as well and prefer it
to bundle umd.

https://webpack.js.org/configuration/resolve/#resolvemainfields
https://github.com/rollup/plugins/tree/master/packages/node-resolve#browser
https://github.com/defunctzombie/package-browser-field-spec
@TrySound
Copy link
Member Author

@ctavan Looks good now?

Copy link
Member

@ctavan ctavan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good now! Will pull this in and add some minor nits on top.

@ctavan ctavan merged commit 4344a22 into uuidjs:master Feb 25, 2020
@ctavan ctavan mentioned this pull request Feb 25, 2020
@TrySound TrySound deleted the browser-versions branch February 25, 2020 20:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Version 7.0.0 not compatible with Azure Functions/AWS Lambda/Google Cloud Functions
2 participants