Skip to content

addRule and Your Favorite Library

mikkym edited this page Sep 18, 2017 · 6 revisions

require.addRule(/^modernizr$/i, { path: "modernizr.js", pointcuts: { // before: localize window.document for sandbox before: function() { this.document = window.document; }, // after: capture exports as object, delete from global scope after: function () { module.setExports(window.Modernizr); delete window["Modernizr"]; } } });