From 67064ec7d6d7a4dff51a9860db2f761ee27dc61c Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Fri, 17 Mar 2017 22:12:45 +0100 Subject: [PATCH] build: include scss files in releases * Includes the SCSS files in releases. This has been accidentally disabled in PR #3443 --- tools/gulp/tasks/components.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gulp/tasks/components.ts b/tools/gulp/tasks/components.ts index 3d2468a2ea52..7015ab58231f 100644 --- a/tools/gulp/tasks/components.ts +++ b/tools/gulp/tasks/components.ts @@ -22,6 +22,7 @@ const tsconfigPath = path.join(COMPONENTS_DIR, 'tsconfig.json'); /** Asset files to be added to the components output. */ const assetFiles = [ path.join(COMPONENTS_DIR, '**/*.html'), + path.join(COMPONENTS_DIR, '**/*.scss'), path.join(COMPONENTS_DIR, 'package.json'), path.join(PROJECT_ROOT, 'README.md'), path.join(PROJECT_ROOT, 'LICENSE'),