Add cli-plugin package role

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2026-02-27 23:25:27 +01:00
parent 6f01c33a0e
commit 94a885a2ef
10 changed files with 33 additions and 3 deletions
@@ -33,6 +33,11 @@ const packageRoleInfos: PackageRoleInfo[] = [
platform: 'node',
output: ['cjs'],
},
{
role: 'cli-plugin',
platform: 'node',
output: ['types', 'cjs'],
},
{
role: 'web-library',
platform: 'web',
+1
View File
@@ -23,6 +23,7 @@ export type PackageRole =
| 'frontend'
| 'backend'
| 'cli'
| 'cli-plugin'
| 'web-library'
| 'node-library'
| 'common-library'