Skip to content

Commit 52806d9

Browse files
committed
1.0.1
- returns a unique set of repos correctly from /api/repos
1 parent d51c1fa commit 52806d9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.1 (10/14/2017)
2+
3+
- returns a unique set of repos correctly from `/api/repos`
4+
15
# 1.0.0 (10/14/2017)
26

37
- does not load all content from a single endpoint

lib/coverage.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ module.exports.repos = function repos(repo) {
142142
} else {
143143
return u;
144144
}
145-
}).filter((x, i) => docs.indexOf(x) === i);
146-
return resolve(docs);
145+
});
146+
return resolve([...new Set(docs)]);
147147
});
148148
});
149149
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lcov-server",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "🎯 A simple lcov server & cli parser",
55
"main": "index.js",
66
"homepage": "https://github.com/gabrielcsapo/lcov-server#readme",

0 commit comments

Comments
 (0)