You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WARNING in ./node_modules/@patternfly/react-tokens/dist/esm/chart_global_Fill_Color_white.js
There are multiple modules with names that only differ in casing.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Use equal casing. Compare these module identifiers:
/Users/talton/github/ansible/aap-ui/node_modules/@patternfly/react-tokens/dist/esm/chart_global_Fill_Color_white.js
Used by 1 module(s), i. e.
/Users/talton/github/ansible/aap-ui/node_modules/@patternfly/react-tokens/dist/esm/index.js
/Users/talton/github/ansible/aap-ui/node_modules/@patternfly/react-tokens/dist/esm/chart_global_fill_color_white.js
Used by 1 module(s), i. e.
/Users/talton/github/ansible/aap-ui/node_modules/@patternfly/react-tokens/dist/esm/index.js
1:50
WARNING in ./node_modules/@patternfly/react-tokens/dist/esm/index.js 4803:0-72
export 'chart_global_label_margin' (reexported as 'chart_global_label_margin') was not found in './chart_global_label_margin' (possible exports: chart_global_label_Margin, default) 1:54
Both of those were tokens errors for tokens that we are not using, but are part of the PF libs.
Dan Yesterday at 2:21 PM
Looks like the react-tokens/dist/esm/index.d.ts file contains both exports below
export { chart_global_label_Margin } from './chart_global_label_Margin';
export { chart_global_label_margin } from './chart_global_label_margin';
The filename is chart_global_label_margin, while chart_global_label_Margin is the default export
The index.d.ts file contains a lot of duplication like that (edited)
The text was updated successfully, but these errors were encountered:
Please describe the issue
generateTokens script should prfeix tokens with t
From slack thread
WARNING in ./node_modules/@patternfly/react-tokens/dist/esm/chart_global_Fill_Color_white.js
There are multiple modules with names that only differ in casing.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Use equal casing. Compare these module identifiers:
Used by 1 module(s), i. e.
/Users/talton/github/ansible/aap-ui/node_modules/@patternfly/react-tokens/dist/esm/index.js
Used by 1 module(s), i. e.
/Users/talton/github/ansible/aap-ui/node_modules/@patternfly/react-tokens/dist/esm/index.js
1:50
WARNING in ./node_modules/@patternfly/react-tokens/dist/esm/index.js 4803:0-72
export 'chart_global_label_margin' (reexported as 'chart_global_label_margin') was not found in './chart_global_label_margin' (possible exports: chart_global_label_Margin, default)
1:54
Both of those were tokens errors for tokens that we are not using, but are part of the PF libs.
Dan
Yesterday at 2:21 PM
Looks like the react-tokens/dist/esm/index.d.ts file contains both exports below
export { chart_global_label_Margin } from './chart_global_label_Margin';
export { chart_global_label_margin } from './chart_global_label_margin';
The filename is chart_global_label_margin, while chart_global_label_Margin is the default export
The index.d.ts file contains a lot of duplication like that (edited)
The text was updated successfully, but these errors were encountered: