Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

grunt-bower-version

StefanoMagrassi83deprecated0.1.1

Package no longer supported. Use at your own risk.

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

gruntplugin

readme

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