Generate icons from `.ts. files (#1842)

This commit is contained in:
Ian Richardson 2018-10-23 02:32:27 -05:00 committed by Paulus Schoutsen
parent cc97e82a78
commit fc2608980f

View File

@ -94,6 +94,7 @@ function findIcons(path, iconsetName) {
}
}
mapFiles(path, ".js", processFile);
mapFiles(path, ".ts", processFile);
return Array.from(icons);
}