babel/generator-babel-boilerplate

Coverage broken on master

Closed this issue · 6 comments

Might be releated to the string of commits here: 62cbe18, but I'm not sure. Investigation underway!

This worked on a recent commit before the switch to Yeoman, e49f661. I'm still investigating the cause...

The isparta and istanbul deps are identical. I copy + pasted the new module and new test to the old code, and it still worked. I then copy+pasted the old task to the new Gulpfile, and it was still broken. Really confused about this one!

Same Babel dep, too.

This is caused by overriding Istanbul's require wrap. The order needs to go Babel => Istanbul, but the refactor in 62cbe18 inadvertently made it go Babel => Istanbul => Babel.

I'll likely need to make a PR to fix this on Parsley as well.

//cc @marcandre

: P

Oops, my mistake. This bug was never released. Carry on!

Copy+pasting the old Gulpfile into the new fixes the problem, so it's def. something in the Gulpfile

The issue is described in this issue: douglasduteil/isparta#45

Solution is here: douglasduteil/isparta#45 (comment)

Done!