mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
f4fb963fab
commit
484e60e328
23 changed files with 494 additions and 218 deletions
15
dashboard-ui/bower_components/Swiper/gulpfile.js
vendored
15
dashboard-ui/bower_components/Swiper/gulpfile.js
vendored
|
@ -170,32 +170,41 @@
|
|||
.pipe(tap(function (file, t){
|
||||
addJSIndent (file, t);
|
||||
}))
|
||||
.pipe(sourcemaps.init())
|
||||
.pipe(concat(swiper.filename + '.js'))
|
||||
.pipe(header(swiper.banner, { pkg : swiper.pkg, date: swiper.date } ))
|
||||
.pipe(gulp.dest(paths.build.scripts))
|
||||
|
||||
.pipe(jshint())
|
||||
.pipe(jshint.reporter(stylish));
|
||||
.pipe(jshint.reporter(stylish))
|
||||
.pipe(sourcemaps.write('./maps/'))
|
||||
.pipe(gulp.dest(paths.build.scripts));
|
||||
|
||||
|
||||
gulp.src(swiper.jQueryFiles)
|
||||
.pipe(tap(function (file, t){
|
||||
addJSIndent (file, t);
|
||||
}))
|
||||
.pipe(sourcemaps.init())
|
||||
.pipe(concat(swiper.filename + '.jquery.js'))
|
||||
.pipe(header(swiper.banner, { pkg : swiper.pkg, date: swiper.date } ))
|
||||
.pipe(sourcemaps.write('./maps/'))
|
||||
.pipe(gulp.dest(paths.build.scripts));
|
||||
gulp.src(swiper.jQueryUMDFiles)
|
||||
.pipe(tap(function (file, t){
|
||||
addJSIndent (file, t);
|
||||
}))
|
||||
.pipe(sourcemaps.init())
|
||||
.pipe(concat(swiper.filename + '.jquery.umd.js'))
|
||||
.pipe(header(swiper.banner, { pkg : swiper.pkg, date: swiper.date } ))
|
||||
.pipe(sourcemaps.write('./maps/'))
|
||||
.pipe(gulp.dest(paths.build.scripts));
|
||||
gulp.src(swiper.Framework7Files)
|
||||
.pipe(tap(function (file, t){
|
||||
addJSIndent (file, t, true);
|
||||
}))
|
||||
.pipe(sourcemaps.init())
|
||||
.pipe(concat(swiper.filename + '.framework7.js'))
|
||||
.pipe(header(swiper.banner, { pkg : swiper.pkg, date: swiper.date } ))
|
||||
.pipe(sourcemaps.write('./maps/'))
|
||||
.pipe(gulp.dest(paths.build.scripts))
|
||||
.pipe(connect.reload());
|
||||
cb();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue