From d21a375e57da8e87eb83253f0e27b844c5f815cc Mon Sep 17 00:00:00 2001 From: smathis Date: Thu, 12 Mar 2020 13:05:18 -0500 Subject: [PATCH] fix: adding .js extension to exported *.css.js file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • this was throwing off some versions/configurations of Jest • the module loader was looking for a CSS file Signed-off-by: Scott Mathis --- src/clr-core/common/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clr-core/common/index.ts b/src/clr-core/common/index.ts index ae40e115ac..bc504fa2a2 100644 --- a/src/clr-core/common/index.ts +++ b/src/clr-core/common/index.ts @@ -24,4 +24,4 @@ export * from './mixins/css-helpers'; export * from './mixins/unique-id'; export * from './mixins/apply-mixins'; export * from './interfaces'; -export { styles as baseStyles } from './base/base.element.css'; +export { styles as baseStyles } from './base/base.element.css.js';