From fc2608980fc09285be8bc7176499c742441e8880 Mon Sep 17 00:00:00 2001 From: Ian Richardson Date: Tue, 23 Oct 2018 02:32:27 -0500 Subject: [PATCH] Generate icons from `.ts. files (#1842) --- gulp/tasks/gen-icons.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulp/tasks/gen-icons.js b/gulp/tasks/gen-icons.js index 5a3c458761..20623d4838 100644 --- a/gulp/tasks/gen-icons.js +++ b/gulp/tasks/gen-icons.js @@ -94,6 +94,7 @@ function findIcons(path, iconsetName) { } } mapFiles(path, ".js", processFile); + mapFiles(path, ".ts", processFile); return Array.from(icons); }