HTML5 has an async attribute for script files, to enable async loading.
<script type="text/javascript" src="myScript.js" async></script>
I can take advantage of this with my MVC4 bundling by referencing the bundle like so.
<script type="text/javascript" src='@Scripts.Url("~/bundles/jquery")' async></script>
But what this does mean is my scripts are bundled even when in debug mode.
So how can I take advantage of bundling and the async attribute without loosing non-minification when in debug.