component.js 341 B

1234567891011
  1. module.exports = function (grunt) {
  2. grunt.registerTask('component', function () {
  3. var config = JSON.parse(grunt.file.read('component.json'));
  4. config.files = grunt.file.expand('lang/*.js');
  5. config.files.unshift('moment.js');
  6. grunt.file.write('component.json', JSON.stringify(config, true, 2));
  7. });
  8. }