Всем привет!
Подскажите пожалуйста, что делаю не так.
Gulp'ом собираю проект
script.js
import $ from 'jquery';
import select2 from 'select2';
import Swiper, {Scrollbar, Mousewheel, Navigation} from 'swiper';
Swiper.use([Scrollbar, Mousewheel, Navigation]);
window.onload = function () {
$('.select2').select2();
});
Галп задача:
module.exports = function script(cb) {
return browserify({
entries: [
// 'src/scripts/select2.full.min.js',
'src/scripts/scripts.js'
],
transform: [
babelify.configure({ presets: ['@babel/preset-env'] }),
],
})
.bundle()
.pipe(source('scripts.js'))
.pipe(buffer())
.pipe(sourcemaps.init())
.pipe(concat('scripts.js')) // Конкатенируем в один файл
.pipe(terser())
.pipe(sourcemaps.write())
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest('build/js'));
};
Но после сборки выдает ошибку что selec2 нет((
Че блин ему надо?) вечно с ним проблемы какие-то))