我試圖自動化.jsx模板編譯。我正在用咕嚕聲來實現這個目標。但目前我的.jsx編譯的咕task任務只是掛起而沒有任何反應......grunt-react任務只在我嘗試運行時掛起
我添加了NPM包grunt-react。然後我說配置吧:
module.exports = function(grunt){
grunt.loadNpmTasks('grunt-react');
grunt.initConfig({
react: {
dynamic_mappings: {
files: [
/* ui-components compiling */
{
expand: true,
cwd: './scripts/components',
src: ['**/**.jsx'],
dest: './scripts/components/dest',
ext: '.js'
}
]
}
}
});
grunt.registerTask('react', ['react']);
};
然後我試圖運行使用咕嚕grunt react
這個任務,任務掛起...並沒有任何反應。它看起來像一些進程運行,但實際上沒有任何反應。
咕嚕版本:
grunt-cli v0.1.13
grunt v0.4.5
操作系統Windows 7