Why Gulp is doing wrong (or its ok, but i need something else) order in concating files?
Here is image for example (on the left, my scripts order and on the right concated file) :
Notificator.js should be on first place...
Folder notificator is in /components/notificator. Here is my gulpfile.js:
gulp.src('./htdocs/js/components/**/*.js')
.pipe(concat('components.js'))
.pipe(gulp.dest('./htdocs/dist/js/')),