added the frontend-extension-bundle role

Co-authored-by: Patrik Oldsberg <poldsberg@gmail.com>
Co-authored-by: Camila Belo <camilaibs@gmail.com>
Co-authored-by: blam <ben@blam.sh>
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2024-08-08 16:15:57 +02:00
parent 9c38ce914d
commit 8669210f3b
13 changed files with 57 additions and 18 deletions
+1
View File
@@ -154,6 +154,7 @@ export type PackageRole =
| 'node-library'
| 'common-library'
| 'frontend-plugin'
| 'frontend-extension-bundle'
| 'frontend-plugin-module'
| 'backend-plugin'
| 'backend-plugin-module';
@@ -53,6 +53,11 @@ const packageRoleInfos: PackageRoleInfo[] = [
platform: 'web',
output: ['types', 'esm'],
},
{
role: 'frontend-extension-bundle',
platform: 'web',
output: ['types', 'esm'],
},
{
role: 'frontend-plugin-module',
platform: 'web',
+1
View File
@@ -27,6 +27,7 @@ export type PackageRole =
| 'node-library'
| 'common-library'
| 'frontend-plugin'
| 'frontend-extension-bundle'
| 'frontend-plugin-module'
| 'backend-plugin'
| 'backend-plugin-module';