kratiahuja / fastboot-transform

Transforms given broccoli tree that contains browser API to be fastboot complaint
14 stars 7 forks source link

fix fastboot check #1

Closed miguelcobain closed 7 years ago

miguelcobain commented 7 years ago

a js file may end with a line comment. If it does, this transform places the } in the same line as the comment and then the closing bracket is ignored leading to syntax errors.

kratiahuja commented 7 years ago

Could you add a test as well?

miguelcobain commented 7 years ago

For future reference: I opted to use \n. Template strings preserve whitespace. This way we're more sure about what space gets added without making the source code weird. Test added and previous test fixed.