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.
package/dist/index.js CHANGED
@@ -7836,6 +7836,12 @@ async function runVariantUiAdd(packageName, options) {
7836
7836
  if (idx >= 0) installed.installed[idx] = entry;
7837
7837
  else installed.installed.push(entry);
7838
7838
  await writeInstalledManifest(projectRoot, installed);
7839
+ config.packages[packageName] = {
7840
+ ...config.packages[packageName] ?? {},
7841
+ variant,
7842
+ version: packageVersion
7843
+ };
7844
+ await writeProjectConfig(projectRoot, config);
7839
7845
  return {
7840
7846
  packageName: fullPackageName,
7841
7847
  variant,