You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It has become obvious that different ways of distributing source code is impacting the techniques in bundling the library.
We need a dedicate PR which fixes our current pattern(s):
Browser bundle
This bundle is our own compiled source code which can be dropped into a page though a <script> tag. This should support natively support a list of browsers (so it can bundle the necessary polyfills)
Module system
Expose raw source code which can be consumed by an application with a module system (e.g. Webpack). Host application can optimize the browser bundle. This should state the minimum requirements for code transformation (e.g. ES6 -> ES5, polyfills).
The text was updated successfully, but these errors were encountered:
It has become obvious that different ways of distributing source code is impacting the techniques in bundling the library.
We need a dedicate PR which fixes our current pattern(s):
This bundle is our own compiled source code which can be dropped into a page though a
<script>
tag. This should support natively support a list of browsers (so it can bundle the necessary polyfills)Expose raw source code which can be consumed by an application with a module system (e.g. Webpack). Host application can optimize the browser bundle. This should state the minimum requirements for code transformation (e.g. ES6 -> ES5, polyfills).
The text was updated successfully, but these errors were encountered: