You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
4.2 KiB
171 lines
4.2 KiB
/*jshint node: true, strict: false */ |
|
|
|
var fs = require('fs'); |
|
var gulp = require('gulp'); |
|
var rename = require('gulp-rename'); |
|
var replace = require('gulp-replace'); |
|
|
|
// ----- hint ----- // |
|
|
|
var jshint = require('gulp-jshint'); |
|
|
|
gulp.task( 'hint-js', function() { |
|
return gulp.src('imagesloaded.js') |
|
.pipe( jshint() ) |
|
.pipe( jshint.reporter('default') ); |
|
}); |
|
|
|
gulp.task( 'hint-test', function() { |
|
return gulp.src('test/unit/*.js') |
|
.pipe( jshint() ) |
|
.pipe( jshint.reporter('default') ); |
|
}); |
|
|
|
gulp.task( 'hint-task', function() { |
|
return gulp.src('gulpfile.js') |
|
.pipe( jshint() ) |
|
.pipe( jshint.reporter('default') ); |
|
}); |
|
|
|
var jsonlint = require('gulp-json-lint'); |
|
|
|
gulp.task( 'jsonlint', function() { |
|
return gulp.src( '*.json' ) |
|
.pipe( jsonlint() ) |
|
.pipe( jsonlint.report('verbose') ); |
|
}); |
|
|
|
gulp.task( 'hint', [ 'hint-js', 'hint-test', 'hint-task', 'jsonlint' ]); |
|
|
|
// -------------------------- RequireJS makes pkgd -------------------------- // |
|
|
|
// refactored from gulp-requirejs-optimize |
|
// https://www.npmjs.com/package/gulp-requirejs-optimize/ |
|
|
|
var gutil = require('gulp-util'); |
|
var through = require('through2'); |
|
var requirejs = require('requirejs'); |
|
var chalk = require('chalk'); |
|
|
|
function rjsOptimize( options ) { |
|
options = options || {}; |
|
|
|
requirejs.define('node/print', [], function() { |
|
return function(msg) { |
|
if( msg.substring(0, 5) === 'Error' ) { |
|
gutil.log( chalk.red( msg ) ); |
|
} else { |
|
gutil.log( msg ); |
|
} |
|
}; |
|
}); |
|
|
|
var stream = through.obj(function (file, enc, cb) { |
|
if ( file.isNull() ) { |
|
return cb( null, file ); |
|
} |
|
|
|
options.logLevel = 2; |
|
|
|
options.out = function( text ) { |
|
var outFile = new gutil.File({ |
|
path: file.relative, |
|
contents: new Buffer( text ) |
|
}); |
|
cb( null, outFile ); |
|
}; |
|
|
|
gutil.log('RequireJS optimizing'); |
|
requirejs.optimize( options, null, function( err ) { |
|
var gulpError = new gutil.PluginError( 'requirejsOptimize', err.message ); |
|
stream.emit( 'error', gulpError ); |
|
}); |
|
}); |
|
|
|
return stream; |
|
} |
|
|
|
// regex for banner comment |
|
var reBannerComment = new RegExp('^\\s*(?:\\/\\*[\\s\\S]*?\\*\\/)\\s*'); |
|
|
|
function getBanner() { |
|
var src = fs.readFileSync( 'imagesloaded.js', 'utf8' ); |
|
var matches = src.match( reBannerComment ); |
|
var banner = matches[0].replace( 'imagesLoaded', 'imagesLoaded PACKAGED' ); |
|
return banner; |
|
} |
|
|
|
function addBanner( str ) { |
|
return replace( /^/, str ); |
|
} |
|
|
|
gulp.task( 'requirejs', function() { |
|
var banner = getBanner(); |
|
// HACK src is not needed |
|
// should refactor rjsOptimize to produce src |
|
return gulp.src('imagesloaded.js') |
|
.pipe( rjsOptimize({ |
|
baseUrl: 'bower_components', |
|
optimize: 'none', |
|
include: [ |
|
'../imagesloaded' |
|
] |
|
}) ) |
|
// remove named module |
|
.pipe( replace( "'../imagesloaded',", '' ) ) |
|
// add banner |
|
.pipe( addBanner( banner ) ) |
|
.pipe( rename('imagesloaded.pkgd.js') ) |
|
.pipe( gulp.dest('.') ); |
|
}); |
|
|
|
|
|
// ----- uglify ----- // |
|
|
|
var uglify = require('gulp-uglify'); |
|
|
|
gulp.task( 'uglify', [ 'requirejs' ], function() { |
|
var banner = getBanner(); |
|
gulp.src('imagesloaded.pkgd.js') |
|
.pipe( uglify() ) |
|
// add banner |
|
.pipe( addBanner( banner ) ) |
|
.pipe( rename('imagesloaded.pkgd.min.js') ) |
|
.pipe( gulp.dest('.') ); |
|
}); |
|
|
|
// ----- version ----- // |
|
|
|
// set version in source files |
|
|
|
var minimist = require('minimist'); |
|
|
|
// use gulp version -t 1.2.3 |
|
gulp.task( 'version', function() { |
|
var args = minimist( process.argv.slice(3) ); |
|
var version = args.t; |
|
if ( !version || !/\d\.\d\.\d/.test( version ) ) { |
|
gutil.log( 'invalid version: ' + chalk.red( version ) ); |
|
return; |
|
} |
|
gutil.log( 'ticking version to ' + chalk.green( version ) ); |
|
|
|
gulp.src('imagesloaded.js') |
|
.pipe( replace( /imagesLoaded v\d\.\d\.\d/, 'imagesLoaded v' + version ) ) |
|
.pipe( gulp.dest('.') ); |
|
|
|
gulp.src( [ 'bower.json', 'package.json' ] ) |
|
.pipe( replace( /"version": "\d\.\d\.\d"/, '"version": "' + version + '"' ) ) |
|
.pipe( gulp.dest('.') ); |
|
// replace CDN links in README |
|
gulp.src('README.md') |
|
.pipe( replace( /ajax\/libs\/jquery.imagesloaded\/\d\.\d\.\d/g, 'ajax/libs/jquery.imagesloaded/' + version )) |
|
.pipe( gulp.dest('.') ); |
|
}); |
|
|
|
// ----- default ----- // |
|
|
|
gulp.task( 'default', [ |
|
'hint', |
|
'uglify' |
|
]);
|
|
|