grunt-update-json icon indicating copy to clipboard operation
grunt-update-json copied to clipboard

Options defined in the Gruntfile don't seem to apply

Open roryhardy opened this issue 9 years ago • 0 comments

It looks like nothing set in the Gruntfile is carrying through to the task. It's always operating in the default state.

I'm using:

  • Node v5.2.0
  • grunt-cli v0.1.13
  • grunt v0.4.5
  • NPM 3.3.12

Below is my update_json snippet from my Gruntfile:

update_json: {
  options: {
    indent : '  '
  },
  bower: {
    src    : 'package.json',
    dest   : 'bower.json',
    fields : 'name, version, license'
  }
}

Am I just missing something or is this confirmable on the latest version (0.2.2 on NPM)

roryhardy avatar Jan 04 '16 19:01 roryhardy