Closed austinkelleher closed 8 years ago
Technically, the change from lasso-require 3.0 to 3.1 does not actually need to be changed in package.json
because node.js will automatically download 3.1 when installing dependencies when using ^3.0.0 pattern.
@philidem is correct, but I will merge anyway. FYI, lasso-require
was updated to make it easier to write transforms that don't require the more verbose stream-based API that is required when using the browserify stream API. Streams are only helpful if the receiving end can handle things in chunks. If all of the chunks need to be collected together then there is really no benefit to using streams. lasso-babel-transform
depends on the improved API.
Oh, @philidem already merged :)
Whoops. I did know that. Didn't even think about it when investigating.
When using lasso-babel-transform, I received the following error:
Upon further investigation, I found that lasso-require had fixed this bug in a new version.