We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eaad65 commit 7822d08Copy full SHA for 7822d08
components/git/wpt.js
@@ -52,7 +52,7 @@ async function main(argv) {
52
if (fs.existsSync(statusFolder)) {
53
const jsons = fs.readdirSync(statusFolder);
54
supported = supported.concat(
55
- jsons.map(item => item.replace('.json', '')));
+ jsons.map(item => path.basename(item, path.extname(item))));
56
} else {
57
cli.warn(`Please create the status JSON files in ${statusFolder}`);
58
}
0 commit comments