Commit 2834c123 authored by Robert Knight's avatar Robert Knight

Add a comment about the grouping of polyfills into sets/bundles

parent 95d08451
...@@ -117,6 +117,10 @@ const appBundles = [{ ...@@ -117,6 +117,10 @@ const appBundles = [{
transforms: ['babel', 'coffee'], transforms: ['babel', 'coffee'],
}]; }];
// Polyfill bundles. Polyfills are grouped into "sets" (one bundle per set)
// based on major ECMAScript version or DOM API. Some large polyfills
// (eg. for String.prototype.normalize) are additionally separated out into
// their own bundles.
const polyfillBundles = [ const polyfillBundles = [
'document.evaluate', 'document.evaluate',
'es2015', 'es2015',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment