Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
750ec7783f | ||
|
|
14ae438735 | ||
|
|
2f8bdd7e27 | ||
|
|
87da9fcfc5 | ||
|
|
51f6cfddca |
@@ -11,6 +11,11 @@
|
||||
|
||||
_Note: Gaps between patch versions are faulty/broken releases._
|
||||
|
||||
## 2.12.5
|
||||
|
||||
* **Internal**
|
||||
* Fix incorrect `for...in` loop still causing `ember-script` issues.
|
||||
|
||||
## 2.12.4
|
||||
|
||||
* **Polish**
|
||||
|
||||
@@ -233,9 +233,8 @@ LetScoping.prototype.getInfo = function () {
|
||||
|
||||
var declar;
|
||||
|
||||
for (var i in opts.declarators) {
|
||||
for (var i = 0; i < opts.declarators.length; i++) {
|
||||
declar = opts.declarators[i];
|
||||
opts.declarators.push(declar);
|
||||
|
||||
var keys = t.getIds(declar, true);
|
||||
_.each(keys, duplicates);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "6to5",
|
||||
"description": "Turn ES6 code into readable vanilla ES5 with source maps",
|
||||
"version": "2.12.4",
|
||||
"version": "2.12.5",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://6to5.org/",
|
||||
"repository": "6to5/6to5",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if (process.env.SIMPLE_6TO5_TESTS || process.env.running_under_istanbul) return;
|
||||
if (process.env.SIMPLE_6TO5_TESTS) return;
|
||||
|
||||
var transform = require("../lib/6to5/transformation/transform");
|
||||
var readdir = require("fs-readdir-recursive");
|
||||
|
||||
Reference in New Issue
Block a user