@powerlines/engine 0.45.2 → 0.45.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.
@@ -3156,7 +3156,6 @@ 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 ?? []);
3160
3159
  await this.innerSetup();
3161
3160
  }
3162
3161
  /**
@@ -3226,6 +3225,7 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
3226
3225
  */
3227
3226
  async innerSetup() {
3228
3227
  const logger = this.extendLogger({ category: "config" });
3228
+ this.config.plugins = (this.config.initialConfig.plugins ?? []).concat(this.config.userConfig.plugins ?? [], this.config.inlineConfig.plugins ?? []);
3229
3229
  this.config.output = (0, defu.default)(this.config.output ?? {}, {
3230
3230
  copy: { assets: [
3231
3231
  { glob: "LICENSE" },
@@ -3722,6 +3722,7 @@ var PowerlinesExecutionContext = class PowerlinesExecutionContext extends Powerl
3722
3722
  const powerlinesPath = await (0, _stryke_fs_resolve.resolvePackage)("powerlines");
3723
3723
  if (!powerlinesPath) throw new Error("Could not resolve `powerlines` package location.");
3724
3724
  context.powerlinesPath = powerlinesPath;
3725
+ await context.setup();
3725
3726
  return context;
3726
3727
  }
3727
3728
  /**
@@ -3123,7 +3123,6 @@ 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 ?? []);
3127
3126
  await this.innerSetup();
3128
3127
  }
3129
3128
  /**
@@ -3193,6 +3192,7 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
3193
3192
  */
3194
3193
  async innerSetup() {
3195
3194
  const logger = this.extendLogger({ category: "config" });
3195
+ this.config.plugins = (this.config.initialConfig.plugins ?? []).concat(this.config.userConfig.plugins ?? [], this.config.inlineConfig.plugins ?? []);
3196
3196
  this.config.output = defu(this.config.output ?? {}, {
3197
3197
  copy: { assets: [
3198
3198
  { glob: "LICENSE" },
@@ -3689,6 +3689,7 @@ var PowerlinesExecutionContext = class PowerlinesExecutionContext extends Powerl
3689
3689
  const powerlinesPath = await resolvePackage("powerlines");
3690
3690
  if (!powerlinesPath) throw new Error("Could not resolve `powerlines` package location.");
3691
3691
  context.powerlinesPath = powerlinesPath;
3692
+ await context.setup();
3692
3693
  return context;
3693
3694
  }
3694
3695
  /**