I use angular seed, I add bootstrap to project
In index.html I use this script.
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="app.js"></script>
when I run npm run run update-index-async
thats generate this script section
$script([
'bower_components/jquery/dist/jquery.js',
'bower_components/bootstrap/dist/js/bootstrap.js',
'bower_components/angular/angular.js',
'bower_components/angular-ui-router/release/angular-ui-router.min.js',
'app.js'
]
but when I load index-async, I get "Uncaught Error: Bootstrap's JavaScript requires jQuery".
How can I managed dependencies with angular-loader.js. Is there any chance how to do that?