@inspecto-dev/plugin 0.3.0 → 0.3.1

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/rspack.cjs CHANGED
@@ -677,9 +677,7 @@ function resolveIntents(serverPrompts) {
677
677
  continue;
678
678
  }
679
679
  if (!item.aiIntent) {
680
- configLogger.warn(
681
- `Intent "${item.id}" is missing required "aiIntent".`
682
- );
680
+ configLogger.warn(`Intent "${item.id}" is missing required "aiIntent".`);
683
681
  continue;
684
682
  }
685
683
  result.push(
@@ -705,9 +703,7 @@ function resolveIntents(serverPrompts) {
705
703
  continue;
706
704
  }
707
705
  if (!item.aiIntent) {
708
- configLogger.warn(
709
- `Intent "${item.id}" is missing required "aiIntent".`
710
- );
706
+ configLogger.warn(`Intent "${item.id}" is missing required "aiIntent".`);
711
707
  continue;
712
708
  }
713
709
  const existingIdx = merged.findIndex((i) => i.id === item.id);