UNPKG

bootstrap-wysiwyg

Version:

A tiny Bootstrap and jQuery based WYSIWYG rich text editor based on the browser function execCommand.

69 lines (58 loc) 1.78 kB
// 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" ] ); } );