npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bower-min

v1.0.0

Published

Get bower main files in both normal and in minimized formats (if available in package) and also the merged version which won't break dependency tree

Downloads

95

Readme

bower-min

Made to be used with Gulp. Based on asset type, get bower main files as normal file names array and as minimized file names array. If no minified version is found for some files, these file names will be available as a 3rd array so you can minify them yourself. The order of the files is as set in bower.json.

It uses main-bower-files, manipulates the result and checks for the availability of a minimized version (in the bower package).

Installation

  npm install --save-dev bower-min

Usage

Require the module and get a set of asset files by giving two paramenters: First paramenter is the non-mimified file extension, like 'js' or 'css'. Second parameter (optional) is the minified file extension, like 'min.js' or 'min.css'. Here is a usage with JavaScript files:

var bowerMin = require('bower-min');
var bowerMinJavaScriptFilesObject = bowerMin('js','min.js');

var normalJavaScriptFileNamesArray           = bowerMinJavaScriptFilesObject.normal;
var mergedJavaScriptFileNamesArray           = bowerMinJavaScriptFilesObject.merged;
var minifiedJavaScriptFileNamesArray         = bowerMinJavaScriptFilesObject.minified;
var minifiedJavaScriptFileNamesNotFoundArray = bowerMinJavaScriptFilesObject.minifiedNotFound;

Minify non-minified scripts in Gulp

Again, this example uses JavaScript files.

var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var merge2 = require('merge2');
var bowerMin = require('bower-min');

var bowerMinJavaScriptFiles = bowerMin('js','min.js');

gulp.task('vendorScriptsDevelopment', function() {
  return gulp.src(bowerMinJavaScriptFiles.normal)
    .pipe(concat('vendor-scripts.js'))
    .pipe(gulp.dest('dev'))
});

gulp.task('vendorScriptsProduction', function() {
  return merge2(
    gulp.src(bowerMinJavaScriptFiles.minified),
    gulp.src(bowerMinJavaScriptFiles.minifiedNotFound)
      .pipe(concat('tmp.min.js'))
      .pipe(uglify())
  )
    .pipe(concat('vendor-scripts.min.js'))
    .pipe(gulp.dest('dist'))
});

Copy your Bower dependencies with Gulp

Assuming your Bower dependencies contain various extension files (css, js, fonts, eot, svg, etc.), it may seem heavy to select ALL the possible extensions. So, here is a sample that shows how to...

  • Copy the minified JS and CSS scripts when they exists.
  • Copy the full JS and CSS scripts when no minified version exist.
  • Copy all the other Bower dependencies (no matter their extension).
// Include our plug-ins
var bowermin = require('bower-min');
var mainBowerFiles = require('main-bower-files');
var exists = require('path-exists').sync;
var gulpIgnore = require('gulp-ignore');

// Create some task
gulp.task( 'copy-bower-dep', function() {

	// Copy minified resources (Bower)
	gulp.src( bowermin( 'js', 'min.js' ).minified, {base: './my-bower-components/dir'})
			.pipe( gulp.dest( './target/dist/lib' ));

	gulp.src( bowermin( 'css', 'min.css' ).minified, {base: './my-bower-components/dir'})
			.pipe( gulp.dest( './target/dist/lib' ));

	// Copy non-minified resources (Bower)
	// Notice we filter these resources to distinguish which one are minified.
	gulp.src( mainBowerFiles(), {base: './my-bower-components/dir'})
			.pipe( gulpIgnore.include( keepNonMinified ))
			.pipe( gulp.dest( './target/dist/lib' ));
});

/*
 * A function that checks whether a Bower file has a minified version.
 */
function keepNonMinified( file ) {

	var keep = true;
	if( file.path.match( '\.js$' )) {
		var minPath = file.path.replace( '.js', '.min.js' );
		keep = ! exists( minPath );

	} else if( file.path.match( '\.css$' )) {
		var minPath = file.path.replace( '.css', '.min.css' );
		keep = ! exists( minPath );
	}

	// gutil.log( file.path + ' => ' + keep );
	return keep;
}

Based on this gist.

Issues

If you find a bug, have a feature request or similar, then create an issue on https://github.com/mohibeyki/bower-min/issues.

LICENSE

GPLv2 © Mohi Beyki