File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,7 @@ tsconfig.tsbuildinfo
27
27
28
28
29
29
custom-elements.json
30
- /packages /uui-css /custom-properties.js
31
- /packages /uui-css /custom-properties.module.js
30
+ /packages /uui-css /custom-properties. *
32
31
storybook-static
33
32
debug.log
34
33
out-css
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ module.exports = {
27
27
config . optimizeDeps . include . push ( 'lit/directives/style-map.js' ) ;
28
28
config . optimizeDeps . include . push ( 'lit/directives/if-defined.js' ) ;
29
29
config . optimizeDeps . include . push ( 'lit/directives/unsafe-html.js' ) ;
30
+ config . optimizeDeps . include . push ( 'element-internals-polyfill' ) ;
30
31
}
31
32
32
33
return config ;
Original file line number Diff line number Diff line change 1
- import postcss from 'postcss' ;
2
1
import * as fs from 'fs/promises' ;
3
2
import path from 'path' ;
3
+ import postcss from 'postcss' ;
4
4
import postcssCustomProperties from 'postcss-custom-properties' ;
5
5
import * as postCssValueParser from 'postcss-values-parser' ;
6
6
@@ -37,7 +37,7 @@ export const CacheCustomProperties = async masterCSSPath => {
37
37
38
38
try {
39
39
await fs . writeFile (
40
- './custom-properties.js ' ,
40
+ './custom-properties.cjs ' ,
41
41
`module.exports = ${ json } ;` ,
42
42
'utf8'
43
43
) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const postcssConfig = require('postcss-load-config');
11
11
12
12
// @ts -ignore-start
13
13
// eslint-disable-next-line -- // @typescript-eslint/ban-ts-comment // @ts-ignore
14
- const customProperties = require ( '../packages/uui-css/custom-properties.js ' ) ; // eslint-disable-line
14
+ const customProperties = require ( '../packages/uui-css/custom-properties.cjs ' ) ; // eslint-disable-line
15
15
// @ts -ignore-end
16
16
17
17
const options = {
You can’t perform that action at this time.
0 commit comments