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-release-bower

v0.1.6

Published

Grunt.js task which facilitates release of the new versions for Bower components.

Downloads

14

Readme

grunt-release-bower

The release-bower is GruntJS task implementation, that automates process of releasing bower components.

This plugin was build in order to support scenario where one code base produces several self-contained bower components, each with own dependencies, like more complex library. However can be easily used with more classical approach (one code base -> one component) as well.

How that works?

The release-bower Grunt task scans your project tree starting from directory indicated in configuration (usually folder that contains final build artifacts), and detects bower.json files creating on the fly list of corresponding bower components. Each discovered component can be released by the task. The new version of component can be fixed upfront or automatically changed taking into account last released version and increment factor provided by user (according to Semver specification.

Getting Started

This plugin requires Grunt >0.4.5

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-release-bower --save-dev

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

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

Voilà! Now you can use release-bower task with command line : grunt release-bower. (But before please read Configuration chapter ;))

Usage

How specify component to release?

Command line

You can provide list of component to release via command line. After task name provide names of components to release separated by colon marks:

 grunt release-bower:component:component-18n:component-ui

Manual

If you don't provide list of component to release in command line, and plugin detect more than one bower component available, you will be prompted to choose which components should be released.

Sample:

 > grunt release-bower
 Running "release-bower" task
  [?] Choose which components you want to release: (Press <space> to select)
 >[ ] component-feature
  [X] component-kendo
  [ ] component

How control version numbers?

The release-bower task provides several methods to specify version of artifact to release.

bower.json

In bower.json file corresponding to bower component you can either provide fixed next version, or use variable auto, which instructs plugin to automatically pump version of component (increment step can be defined via --increment flag).

Example (bower.json):

 {
     "name": "component",
     "version": "auto",
     "authors": [
         "Jan Korona <[email protected]>"
     ],
     "description": "Core part of library.",
     ....
 }

command line flag

See chapter Configuration -> Command line

Options

There are two sources of configuration for release-bower task plugin:

  • Gruntfile.js options
  • Command line parameters

Gruntfile.js

Sample configuration

 "release-bower": {
     options: {
         scanPath: 'dist',
         tmpDir: 'tmp',
         commitMessage: 'Release <%= name %>, version <%= version %>.'
     }
 }

Command line

In addition to Gruntfile.js options, you can use few flags in command line.


--increment

Specifies increment step that should be automatically applied to the newly released bower component. According to Semver specification you can used one of :

  • major
  • minor
  • patch

Default value for this flag is patch.

Sample:

 grunt bower-release --increment=minor

--ver

This flag allows you fix version of component to release. Of course you have to remember to follow rules of Semver specification.

Sample:

 grunt release-bower --version=1.2.3

--all

With that flag all modules will be release in one shot. If the modules do not have the same version yet, you have to add the --ver argument in order to specify the first common version.

Sample:

  grunt release-bower --all --ver=1.2.3

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

2015-02-05 Initial version 0.1.0 released. 2016-02-29 Patch 0.1.6 with support for GruntJS 1.0.