I have an app built with ionic and angular and a gulp file that should takes everything inside src/js and put it inside the www/js build folder. The problem is that it doesn't take anything from the src/js.
This is the code:
var js_library = "./src/js/**/*.*"
gulp.task('export_js_library', function() {
gulp.src(js_library)
.pipe(gulp.dest('www/js/'));
});
Is my syntax wrong? The files are actually inside src/js