File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const config: typeof baseConfig = {
1111 'botframework-webchat-api-middleware.internal' : './src/internal.ts' ,
1212 'botframework-webchat-api-middleware.legacy' : './src/legacy.ts'
1313 } ,
14- onSuccess : `${ baseConfig . onSuccess } && touch ${ DEPENDENT_PATHS . map ( path => `../${ path } /src/index .ts` ) . join ( ' ' ) } `
14+ onSuccess : `${ baseConfig . onSuccess } && touch ${ DEPENDENT_PATHS . map ( path => `../${ path } /src/buildInfo .ts` ) . join ( ' ' ) } `
1515} ;
1616
1717export default defineConfig ( [
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const commonConfig: typeof baseConfig = {
1212 'botframework-webchat-api.internal' : './src/internal.ts' ,
1313 'botframework-webchat-api.middleware' : './src/middleware.ts'
1414 } ,
15- onSuccess : `${ baseConfig . onSuccess } && touch ${ DEPENDENT_PATHS . map ( path => `../${ path } /src/index .ts` ) . join ( ' ' ) } `
15+ onSuccess : `${ baseConfig . onSuccess } && touch ${ DEPENDENT_PATHS . map ( path => `../${ path } /src/buildInfo .ts` ) . join ( ' ' ) } `
1616} ;
1717
1818export default defineConfig ( [
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const config: typeof baseConfig = {
1010 'botframework-webchat-base' : './src/index.ts' ,
1111 'botframework-webchat-base.utils' : './src/utils/index.ts'
1212 } ,
13- onSuccess : `${ baseConfig . onSuccess } && touch ${ DEPENDENT_PATHS . map ( path => `../${ path } /src/index .ts` ) . join ( ' ' ) } `
13+ onSuccess : `${ baseConfig . onSuccess } && touch ${ DEPENDENT_PATHS . map ( path => `../${ path } /src/buildInfo .ts` ) . join ( ' ' ) } `
1414} ;
1515
1616export default defineConfig ( [
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ import ThumbnailCardContent from '../../adaptiveCards/Attachment/ThumbnailCardCo
1111import VideoCardContent from '../../adaptiveCards/Attachment/VideoCardContent' ;
1212import useAdaptiveCardsHostConfig from '../../adaptiveCards/hooks/useAdaptiveCardsHostConfig' ;
1313import useAdaptiveCardsPackage from '../../adaptiveCards/hooks/useAdaptiveCardsPackage' ;
14+ import buildInfo from '../../buildInfo' ;
1415import defaultCreateDirectLine from '../../createDirectLine' ;
1516import defaultCreateDirectLineAppServiceExtension from '../../createDirectLineAppServiceExtension' ;
1617import useStyleOptions from '../../hooks/useStyleOptions' ;
1718import useStyleSet from '../../hooks/useStyleSet' ;
1819import coreRenderWebChat from '../../renderWebChat' ;
19- import buildInfo from '../buildInfo' ;
2020import { Components as minimalComponents , hooks as minimalHooks } from './minimal' ;
2121
2222buildInfo . set ( 'variant' , 'full' ) ;
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ import ReactWebChat from 'botframework-webchat-component';
33import * as componentDecorator from 'botframework-webchat-component/decorator' ;
44import * as internal from 'botframework-webchat-component/internal' ;
55
6+ import buildInfo from '../../buildInfo' ;
67import defaultCreateDirectLine from '../../createDirectLine' ;
78import defaultCreateDirectLineAppServiceExtension from '../../createDirectLineAppServiceExtension' ;
89import coreRenderWebChat from '../../renderWebChat' ;
9- import buildInfo from '../buildInfo' ;
1010
1111buildInfo . set ( 'variant' , 'minimal' ) ;
1212
Original file line number Diff line number Diff line change 11// Importing polyfills required for IE11/ES5.
22import './polyfill/es5' ;
33
4+ import buildInfo from '../../buildInfo' ;
45import * as actual from '../actual/full-es5' ;
56import * as middleware from '../actual/middleware' ;
6- import buildInfo from '../buildInfo' ;
77
88// Until we have a development-specific bundle, we are not shipping createStoreWithDevTools in bundle.
99const { createStoreWithDevTools : _createStoreWithDevTools , ...exports } = actual ;
Original file line number Diff line number Diff line change 11import './polyfill/modern' ;
22
3+ import buildInfo from '../../buildInfo' ;
34import * as actual from '../actual/full' ;
45import * as middleware from '../actual/middleware' ;
5- import buildInfo from '../buildInfo' ;
66
77// Until we have a development-specific bundle, we are not shipping createStoreWithDevTools in bundle.
88const { createStoreWithDevTools : _createStoreWithDevTools , ...exports } = actual ;
Original file line number Diff line number Diff line change 1+ import buildInfo from '../../buildInfo' ;
12import * as middleware from '../actual/middleware' ;
23import * as actual from '../actual/minimal.js' ;
3- import buildInfo from '../buildInfo' ;
44
55// Until we have a development-specific bundle, we are not shipping createStoreWithDevTools in bundle.
66const { createStoreWithDevTools : _createStoreWithDevTools , ...exports } = actual ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments