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

grunt-bower-main

v0.2.0

Published

Adds only the main files from Bower components to source code.

Downloads

2,251

Readme

Build Status devDependency Status

grunt-bower-main

Adds only the main files from Bower components to source code. Integrates seamlessly with grunt-wiredep.

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-bower-main --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-bower-main');

The "bower_main" task

Overview

In your project's Gruntfile, add a section named bower_main to the data object passed into grunt.initConfig().

grunt.initConfig({
  bower_main: {
    copy: {
      options: {
        dest: 'src/resources/bower_components'
      }
    }
  }
})

Options

options.method

Type: String Default value: 'copy'

Dictates whether the main files will be copied to a destination directory ('copy'), or if other files will be removed from the bower_components directory ('prune').

The default location for the bower_components directory is the top level directory. Setting method to 'copy' will allow you to keep the bower_components directory and copy the main files into your source code. This is useful if you are not using a static frontend stack (like a Java webapp for example). If you don't care about keeping the original component files then you can set your bower_components directory to live directly in the source code and prune away unnecessary files. This method keeps the 'bower.json' and '.bower.json' files also so that bower install does not reinstall them every time.

options.dest

Type: String Default value: null

This must be set if using method: 'copy', will be the top-level destination directory of the main files.

options.tmpDir

Type: String Default value: '.tmp'

This is used with method: 'prune'. The plugin copies main files here, deletes the bower_components directory, and renames this directory to 'bower_components' (or whatever the original bower components directory was named.) Change this if you are using '.tmp' for any other plugin.

options.bowerrc

Type: String Default value: '.bowerrc'

Points to your .bowerrc file if you have one.

options.overrides

Type: Object Default value: undefined

Specify main file overrides. This can also be set in your project's bower.json in the same format, but options take precedent:

overrides: {
    fontawesome: {
        main: './css/font-awesome.css' //exclude fonts
    },
    bootstrap: {
        main: ['dist/js/bootstrap.js'] //exclude styles
    }
}

Usage Examples

This task is generally used in tandem with grunt-wiredep. Run this task first, and then configure wiredep as you normally would. This is possible because the directory structure of the output of this task is identical to the original. The motivation to create this task comes from working in a Java house and we wanted to pull the bower_components out of the artifact, but still be able to use wiredep.

Copy

To get started quickly, just set a 'dest' directory:

grunt.initConfig({
  bower_main: {
    copy: {
      options: {
        dest: 'src/resources/bower_components'
      }
    }  
  }
})

Prune

If you want to prune instead, just tell it to prune and change the temp directory if necessary:

grunt.initConfig({
  bower_main: {
    prune: {
      options: {
        method: 'prune',
        tmpDir: 'pruneTmp'
      }
    }  
  }
})

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 0.2.0 - Overruled - ability to override main files, and fixed double-copy bug
  • 0.1.4 - The Singularity - Added support for ".bower.json"
  • 0.1.3 - Kwirky Keywords - fixed NPM keywords so that we show up on Grunt/Plugins page.
  • 0.1.2 - Broken Window - fixed bug in windows that prevented files from being copied.
  • 0.1.1 - Globular Cluster - added support for globbing patterns in main definitions.
  • 0.1.0 - Initial release

License

Copyright (c) 2014 Ben March. Licensed under the MIT license.