fix parse API not adding all the correct pipeline transformers

This commit is contained in:
Sebastian McKenzie 2015-05-01 11:39:38 +01:00
parent 203ebeef20
commit 3353de225d
2 changed files with 6 additions and 1 deletions

View File

@ -13,6 +13,11 @@ _Note: Gaps between patch versions are faulty/broken releases._
See [CHANGELOG - 6to5](CHANGELOG-6to5.md) for the pre-4.0.0 version changelog.
## 5.2.5
* **Bug Fix**
* Fix `parse` API not adding all the correct pipeline transformers.
## 5.2.4
* **Bug Fix**

View File

@ -65,7 +65,7 @@ export function parse(code, opts = {}) {
};
opts.features = {};
for (var key in transform.transformers) {
for (var key in transform.pipeline.transformers) {
opts.features[key] = true;
}