Merge branch 'valentin/drop-webcomponents-webpack5-support' into valentin/remove-html-webpack5-support

This commit is contained in:
Valentin Palkovic 2025-03-31 09:48:30 +02:00 committed by GitHub
commit 16c9300920
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 5 deletions

View File

@ -164,7 +164,6 @@ export const frameworkToDefaultBuilder: Record<
sveltekit: CoreBuilder.Vite,
'vue3-vite': CoreBuilder.Vite,
'web-components-vite': CoreBuilder.Vite,
'web-components-webpack5': CoreBuilder.Webpack5,
// Only to pass type checking, will never be used
'react-rsbuild': CommunityBuilder.Rsbuild,
'vue3-rsbuild': CommunityBuilder.Rsbuild,

View File

@ -23,7 +23,6 @@ export const frameworkToRenderer: Record<
'vue3-vite': 'vue3',
nuxt: 'vue3',
'web-components-vite': 'web-components',
'web-components-webpack5': 'web-components',
'react-rsbuild': 'react',
'vue3-rsbuild': 'vue3',
// renderers

View File

@ -15,7 +15,6 @@ export type SupportedFrameworks =
| 'sveltekit'
| 'vue3-vite'
| 'web-components-vite'
| 'web-components-webpack5'
| 'qwik'
| 'solid'
| 'nuxt'

View File

@ -23,7 +23,6 @@ export const supportedFrameworks = [
'vue3-vite',
'react-native',
'web-components-vite',
'web-components-webpack5',
] as const;
export const supportedFrameworksPackages = {
@ -65,7 +64,6 @@ export const supportedFrameworksNames = {
'vue3-rsbuild': 'Vue 3 with Rsbuild',
'vue3-vite': 'Vue 3 with Vite',
'web-components-vite': 'Web Components with Vite',
'web-components-webpack5': 'Web Components with Webpack 5',
angular: 'Angular',
ember: 'Ember',
nextjs: 'NextJS',