Slide 24
Slide 24 text
Сборка проекта (grunt)
/*global module:false*/!
module.exports = function(grunt) {!
grunt.initConfig({ !
react: {!
jsx: {!
files: [!
{ expand: true, cwd: 'public/js',!
src: [ '**/*.jsx' ], dest: 'public/js', ext: '.js'}!
]}},!
watch: {!
react: {!
files: 'public/js/**/*.jsx',!
tasks: ['react']!
}}});!
!
grunt.loadNpmTasks('grunt-contrib-watch');!
grunt.loadNpmTasks('grunt-react');!
!
grunt.registerTask('default', ['react']);!
};!