mirror of
https://github.com/pure-css/pure.git
synced 2024-11-07 21:34:24 +00:00
19 lines
603 B
JavaScript
19 lines
603 B
JavaScript
'use strict';
|
|
|
|
var path = require('path');
|
|
|
|
module.exports = function (grunt) {
|
|
grunt.registerMultiTask('bower_json', 'Modifies bower.json file.', function (target) {
|
|
var values = this.data.values;
|
|
|
|
Object.keys(values).forEach(function (key) {
|
|
grunt.config.set('bower.' + key, values[key]);
|
|
grunt.log.writeln('Updated Bower ' +
|
|
String(key).cyan + ': ' + String(values[key]).cyan);
|
|
});
|
|
|
|
grunt.file.write(path.join(this.data.dest, 'bower.json'),
|
|
JSON.stringify(grunt.config('bower'), null, ' '));
|
|
});
|
|
};
|