grunt-updatejsonfile

0.1.0 • Public • Published

grunt-updatejsonfile

The best Grunt plugin ever.

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-updatejsonfile --save-dev

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

grunt.loadNpmTasks('grunt-updatejsonfile');

The "updatejsonfile" task

Overview

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

grunt.initConfig({
  updatejsonfile: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

options.fields

Type: Object

Object with the fields and values that will be override

options.createfield

Type: Boolean Default value: 'false'

A Boolean value that allow this plugin create fields on the file if they doesn't exists

Usage Examples

Default Options

In this example, the file package.json will be update with the options.field values with they are on package.json

grunt.initConfig({
  updatejsonfile: {
      options: {
        fields: {
          version: "2.0.5",
          description: "This plugin update values on json files"
        }
      },
      files: {
        src: ['package.json']
      }
    }
});

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

(Nothing yet)

Readme

Keywords

Package Sidebar

Install

npm i grunt-updatejsonfile

Weekly Downloads

2

Version

0.1.0

License

none

Last publish

Collaborators

  • m-slashe