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

Add rollup PURE marker to improve treeshaking #75

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

PavloKovalov
Copy link

In order to improve treeshanking when building with rollup I've added /*#__PURE__*/ marker.

Main idea is to avoid line export const ulid = factory(); in final bundle. When imported it's been parsed and factory-method raises exception "secure crypto unusable, insecure Math.random not allowed" in some environment, such as my graalvm , which doesn't have any crypto builtins or limited in loading 'crypto' package.

That's how the bundles looks like:

Bundle before with export const ulid = factory()

Bundle after without call factory()

@PavloKovalov
Copy link
Author

🆙 @alizain please, review

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.

None yet

1 participant