Just found this issue:
In the input html file, if I use:
script type="text/javascript" src="jquery-mobile/jquery.mobile-1.4.5.min.js"></script
then the result is:
script type="text/javascript" src="jquery-mobile/jquery.mobile-1.4.5.min.js"></script
But if I rename the "jquery.mobile-1.4.5.min.js" to "jquery.mobile.js" and change my input html to:
script type="text/javascript" src="jquery-mobile/jquery.mobile.js"></script
the result is correctly inlined:
script type="text/javascript">!function(e,t,i){"function"==typeof define&&define.amd?define(["jquery"],function(n){return i(n,e,t),n.mobile}):i(e.jQuery,e,t)}......."
I do note that same version number for CSS or other ressources dont cause any trouble:
link rel="stylesheet" type="text/css" href="jquery-mobile/jquery.mobile-1.4.5.min.css" /
Just found this issue: In the input html file, if I use: script type="text/javascript" src="jquery-mobile/jquery.mobile-1.4.5.min.js"></script
then the result is: script type="text/javascript" src="jquery-mobile/jquery.mobile-1.4.5.min.js"></script
But if I rename the "jquery.mobile-1.4.5.min.js" to "jquery.mobile.js" and change my input html to: script type="text/javascript" src="jquery-mobile/jquery.mobile.js"></script
the result is correctly inlined: script type="text/javascript">!function(e,t,i){"function"==typeof define&&define.amd?define(["jquery"],function(n){return i(n,e,t),n.mobile}):i(e.jQuery,e,t)}......."
I do note that same version number for CSS or other ressources dont cause any trouble: link rel="stylesheet" type="text/css" href="jquery-mobile/jquery.mobile-1.4.5.min.css" /
Thanks in advance for looking into this.