mirror of
https://github.com/pure-css/pure.git
synced 2024-11-24 10:44:21 +00:00
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
|
grunt.registerMultiTask('bower_json', 'Modifies bower.json "main".', function () {
|
|
grunt.config('bower.main', this.data.main);
|
|
grunt.file.write('build/bower.json', JSON.stringify(grunt.config('bower'),null,' '));
|
|
});
|
|
};
|