mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
d6cbc710bd
Apparently it's no longer relevant.
17 lines
299 B
JavaScript
17 lines
299 B
JavaScript
'use strict';
|
|
|
|
var grunt = require('grunt');
|
|
|
|
var version = grunt.config.data.pkg.version;
|
|
|
|
module.exports = {
|
|
starter: {
|
|
options: {
|
|
archive: './build/react-' + version + '.zip'
|
|
},
|
|
files: [
|
|
{cwd: './build/starter', src: ['**'], dest: 'react-' + version + '/'}
|
|
]
|
|
}
|
|
};
|