Here is the structure
Here is a gulp
gulp.task('serve', ['sass', 'js'], function () { browserSync.init({ server: 'app' }); gulp.watch(['app/src/sass/**'], ['sass']); gulp.watch('app/src/js/*.js', ['js-watch']); gulp.watch('app/*.html').on('change', browserSync.reload); }); gulp.task('default', ['serve'], function () { console.log('gulp is watching...') }); If through script to connect angularjs in index.html
<script src="../node_modules/angularjs-ie8-build/dist/angular.min.js"></script> then when downloading via browser-sync angular is not defined. The path is correct, not via b. works
