From fa0e0004772ef0420a05c5dcb56037d963e91988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moreno?= Date: Tue, 2 Feb 2021 11:53:29 +0100 Subject: [PATCH] :lipstick: --- build/ext.js | 3 --- build/ext.ts | 4 ---- 2 files changed, 7 deletions(-) diff --git a/build/ext.js b/build/ext.js index 801a73d852a..f35fa6e4938 100644 --- a/build/ext.js +++ b/build/ext.js @@ -185,9 +185,6 @@ async function ci() { try { for (var _b = __asyncValues(getExtensions()), _c; _c = await _b.next(), !_c.done;) { const extension = _c.value; - if (extension.type !== "theme" /* Theme */ && extension.type !== "grammar" /* Grammar */) { - continue; - } promises.push(limit(() => runExtensionCI(extension, service))); } } diff --git a/build/ext.ts b/build/ext.ts index 5ca7f288d1e..e7b5b60dfaf 100644 --- a/build/ext.ts +++ b/build/ext.ts @@ -195,10 +195,6 @@ async function ci(): Promise { const promises = []; for await (const extension of getExtensions()) { - if (extension.type !== ExtensionType.Theme && extension.type !== ExtensionType.Grammar) { - continue; - } - promises.push(limit(() => runExtensionCI(extension, service))); }