Skip to content

Commit 67600b7

Browse files
committed
Remove launcher experience
1 parent 474af5a commit 67600b7

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

packages/component/tsup.config.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
componentCSSContent as componentCSSContentPlaceholder,
77
decoratorCSSContent as decoratorCSSContentPlaceholder
88
} from './src/cssContent';
9-
import { launcherExperienceStyleContent as launcherExperienceStyleContentPlaceholder } from './src/experience/launcher/private/createStyles';
109

1110
// TODO: [P1] Compute this automatically.
1211
const DEPENDENT_PATHS = ['bundle/src/boot/exports/index.ts'];
@@ -17,7 +16,6 @@ const commonConfig = applyConfig(config => ({
1716
'botframework-webchat-component': './src/index.ts',
1817
'botframework-webchat-component.component': './src/boot/component.ts',
1918
'botframework-webchat-component.decorator': './src/boot/decorator.ts',
20-
'botframework-webchat-component.experience.launcher': './src/boot/experience/launcher.ts',
2119
'botframework-webchat-component.hook': './src/boot/hook.ts',
2220
'botframework-webchat-component.internal': './src/boot/internal.ts'
2321
},
@@ -30,8 +28,7 @@ const commonConfig = applyConfig(config => ({
3028
cssFiles.find(({ path }) => path.endsWith('botframework-webchat-component.component.css'))?.text,
3129
stylesPlaceholder: componentCSSContentPlaceholder
3230
}),
33-
injectCSSPlugin({ stylesPlaceholder: decoratorCSSContentPlaceholder }),
34-
injectCSSPlugin({ stylesPlaceholder: launcherExperienceStyleContentPlaceholder })
31+
injectCSSPlugin({ stylesPlaceholder: decoratorCSSContentPlaceholder })
3532
],
3633
onSuccess: `touch ${DEPENDENT_PATHS.map(path => `../${path}`).join(' ')}`
3734
}));

0 commit comments

Comments
 (0)