@powerlines/engine 0.45.1 → 0.45.2

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.
@@ -3156,6 +3156,7 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
3156
3156
  environments: {},
3157
3157
  resolve: {}
3158
3158
  });
3159
+ this.config.plugins = (this.config.initialConfig.plugins ?? []).concat(this.config.userConfig.plugins ?? [], this.config.inlineConfig.plugins ?? []);
3159
3160
  await this.innerSetup();
3160
3161
  }
3161
3162
  /**
@@ -3123,6 +3123,7 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
3123
3123
  environments: {},
3124
3124
  resolve: {}
3125
3125
  });
3126
+ this.config.plugins = (this.config.initialConfig.plugins ?? []).concat(this.config.userConfig.plugins ?? [], this.config.inlineConfig.plugins ?? []);
3126
3127
  await this.innerSetup();
3127
3128
  }
3128
3129
  /**