BerkeleyTrue / react-material

Material design components written with React.js and React Style
http://berkeleytrue.github.io/react-material
404 stars 38 forks source link

gulp transpile skipping views/src *.jsx #98

Closed cdock1029 closed 9 years ago

cdock1029 commented 9 years ago

Broken by e2a2d30d1d41a0570e38f81075b189ab73669c12

So this doesn't work here in gulpfile.js:

var views = gulp.src('./views/src/*.js')
    .pipe(babel())
    .pipe(gulp.dest('./views'));

Changing that to .jsx also doesn't fix, I'm not familiar with gulp though..

BerkeleyTrue commented 9 years ago

Hey @cdock1029 Thanks for letting us know. Let me apply a quick fix and I'll get back to you.

BerkeleyTrue commented 9 years ago

Just pushed a fix. Should be transpiring command now hits jsx files. There are a couple of issues still as I haven't got a chance to lint all the files. Some components are not proper classes(i.e. not calling super in constructors..). The compiled jsx files still have .jsx exts. etc...

Busy with ThunderCats at the moment. May try to fix all these tomorrow after some client meetings.

P.R.'s welcome!