teamix-evo 0.14.2 → 0.14.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2400,6 +2400,12 @@ async function runVariantUiAdd(packageName, options) {
2400
2400
  if (idx >= 0) installed.installed[idx] = entry;
2401
2401
  else installed.installed.push(entry);
2402
2402
  await writeInstalledManifest(projectRoot, installed);
2403
+ config.packages[packageName] = {
2404
+ ...config.packages[packageName] ?? {},
2405
+ variant,
2406
+ version: packageVersion
2407
+ };
2408
+ await writeProjectConfig(projectRoot, config);
2403
2409
  return {
2404
2410
  packageName: fullPackageName,
2405
2411
  variant,