����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.117.121.71 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/ner2/ucloud/app/assets/admin/vendors/bootstrap-wysiwyg/ |
Upload File : |
// Include gulp var gulp = require('gulp'); // Include our plugins var jshint = require('gulp-jshint'); var bootlint = require('gulp-bootlint'); var uglify = require('gulp-uglify'); var rename = require('gulp-rename'); var bootlint = require('gulp-bootlint'); var html5lint = require('gulp-html5-lint'); var checkPages = require('check-pages'); // Default task gulp.task('default', ['js', 'html', 'bootstrap', 'links', 'minify']); // Lint our JavaScript files gulp.task('js', function () { return gulp.src('src/**/*.js') .pipe(jshint()) .pipe(jshint.reporter('default')); }); gulp.task('html', function () { return gulp.src(['*.html', 'examples/*.html']) .pipe(html5lint()); }); // Lint our Bootstrap files gulp.task('bootstrap', function () { return gulp.src(['*.html', 'examples/**/*.html']) .pipe(bootlint()); }); // Check for broken and invalid links in the web pages gulp.task('links', function (callback) { var options = { pageUrls: [ 'index.html', 'examples/basic.html', 'examples/clear-formatting.html', 'examples/events.html', 'examples/form-post.html', 'examples/formatblock-example.html', 'examples/html-editor.html', 'examples/multiple-editors.html', 'examples/simple-toolbar.html' ], checkLinks: true, summary: true }; checkPages(console, options, callback); }); // Minify our JS gulp.task('minify', function () { return gulp.src('src/*.js') .pipe(uglify()) .pipe(rename('bootstrap-wysiwyg.min.js')) .pipe(gulp.dest('js')); }); // Watch files for changes gulp.task('watch', function () { gulp.watch(['src/*.js', 'index.html', 'examples/*.html'], ['js', 'html', 'bootstrap', 'links', 'minify']); });