![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/public_html/ondjoweb/ |
var gulp = require('gulp'); var browserSync = require('browser-sync').create(); var pkg = require('./package.json'); // Copy third party libraries from /node_modules into /vendor gulp.task('vendor', function() { // Bootstrap gulp.src([ './node_modules/bootstrap/dist/**/*', '!./node_modules/bootstrap/dist/css/bootstrap-grid*', '!./node_modules/bootstrap/dist/css/bootstrap-reboot*' ]) .pipe(gulp.dest('./vendor/bootstrap')) // jQuery gulp.src([ './node_modules/jquery/dist/*', '!./node_modules/jquery/dist/core.js' ]) .pipe(gulp.dest('./vendor/jquery')) }) // Default task gulp.task('default', ['vendor']); // Configure the browserSync task gulp.task('browserSync', function() { browserSync.init({ server: { baseDir: "./" } }); }); // Dev task gulp.task('dev', ['browserSync'], function() { gulp.watch('./css/*.css', browserSync.reload); gulp.watch('./*.html', browserSync.reload); });