You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the babelify transform is specified before the other --options the transform works but the other options don't take. The same is true for the reverse, if for example --live is specified before -- -t [babelify --presets [react es2015] ] then the beefy server will reload when you save a file as you would expect it to but then the transformation doesn't work.
No error is provided when this happens.
Any ideas why this transform doesn't work alongside other options?
The text was updated successfully, but these errors were encountered:
As far as I know beefy sends all arguments that come after -- to browserify and doesn't care about them. Sending the beefy arguments before it should work.
I'm creating a React.js project and using babelify for my transformer
My project structure:
app
-> main.js
-> newIndex.html
beefy main.js -- -t [babelify --presets [react es2015] ]
works 👍beefy main.js --live
works 👍beefy main.js --index=newIndex.html
works 👍beefy main.js --index=newIndex.html --live
works 👍beefy main.js -- -t [babelify --presets [react es2015] ] --live
fails 👎beefy main.js -- -t [babelify --presets [react es2015] ] --index=newIndex.html
fails 👎beefy main.js -- -t [babelify --presets [react es2015] ] --index=newIndex.html --live
fails 👎When the babelify transform is specified before the other --options the transform works but the other options don't take. The same is true for the reverse, if for example --live is specified before -- -t [babelify --presets [react es2015] ] then the beefy server will reload when you save a file as you would expect it to but then the transformation doesn't work.
No error is provided when this happens.
Any ideas why this transform doesn't work alongside other options?
The text was updated successfully, but these errors were encountered: