File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ module.exports = {
1212 webpackFinal : ( config ) => {
1313 config . resolve . alias [ '@pega/react-sdk-components/lib/bridge/react_pconnect' ] = path . resolve ( __dirname , '../__mocks__/react_pconnect.jsx' ) ;
1414 config . resolve . alias [ '@pega/react-sdk-components/lib/components/designSystemExtension/DetailsFields' ] = path . resolve ( __dirname , '../__mocks__/DetailsFields.js' ) ;
15+ config . module . rules . push ( {
16+ test : / \. ( d .t s ) $ / ,
17+ loader : 'null-loader' ,
18+ } ) ;
19+ config . module . rules . push ( {
20+ test : / \. ( m a p ) $ / ,
21+ loader : 'null-loader' ,
22+ } ) ;
1523 return config ;
1624 } ,
17- } ;
25+ } ;
Original file line number Diff line number Diff line change 88} from '@pega/cosmos-react-core' ;
99
1010import { decorator } from "../__mocks__/react_pconnect" ;
11+ import { getSdkComponentMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map' ;
12+
13+ getSdkComponentMap ( ) ;
1114
1215export const decorators : DecoratorFn [ ] = [
1316 ( Story , context ) => {
You can’t perform that action at this time.
0 commit comments