Open
Description
That is a list of loaded JS files in waterfall order.
Pay attention to the order of files core-bundle.js and jquery.cookie.js
core-bundle.js includes jquery-storageapi.js at the same time, storageapi is depended from
'jquery/jquery-storageapi': {'deps': ['jquery/jquery.cookie']}
As you see from Image jquery.cookie.js is loaded later bundle. In result, I have some Js error because of undefined Jquery methods.
Looks like all files included in the bundle should be checked for dependencies, and I afraid they should be sorted in the bundle in the correct order.