This package has been deprecated

Author message:

Package no longer supported. Use at your own risk.

grunt-bower-version

0.1.1 • Public • Published

grunt-bower-version

Grunt plugin to sync bower.json version with package.json version

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

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

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

Bower Version task

Overview

In your project's Gruntfile, add a section named bower_version to the data object passed into grunt.initConfig().
Configure your task and set an array as value. If the array is empty it searches for a bower.json file in the process current working directory, otherwise it searches for the specified file.

grunt.initConfig({
  bower_version: {
    update: []
  }
});

Usage Examples

Default

Searches for bower.json file in the same Gruntfile directory.

grunt.initConfig({
  bower_version: {
    update: []
  }
});

Custom file path

Specify a different bower.json file path.

grunt.initConfig({
  bower_version: {
    update: ['tmp/bower.json']
  }
});

Release History

  • 2015-06-18 | v0.1.0 | First release

Readme

Keywords

Package Sidebar

Install

npm i grunt-bower-version

Weekly Downloads

505

Version

0.1.1

License

none

Last publish

Collaborators

  • contactlab-developer
  • gabdevx
  • stefano_magrassi