claude-scope 0.8.22 → 0.8.23
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/claude-scope.cjs +2 -2
- package/package.json +1 -1
package/dist/claude-scope.cjs
CHANGED
|
@@ -9529,7 +9529,7 @@ async function main() {
|
|
|
9529
9529
|
...widgetConfigItem,
|
|
9530
9530
|
line: parseInt(lineNum, 10)
|
|
9531
9531
|
});
|
|
9532
|
-
await registry.register(widget);
|
|
9532
|
+
await registry.register(widget, { config: { ...widgetConfigItem } });
|
|
9533
9533
|
}
|
|
9534
9534
|
}
|
|
9535
9535
|
}
|
|
@@ -9538,7 +9538,7 @@ async function main() {
|
|
|
9538
9538
|
for (const widgetId of defaultWidgets) {
|
|
9539
9539
|
const widget = factory.createWidget(widgetId);
|
|
9540
9540
|
if (widget) {
|
|
9541
|
-
await registry.register(widget);
|
|
9541
|
+
await registry.register(widget, { config: {} });
|
|
9542
9542
|
}
|
|
9543
9543
|
}
|
|
9544
9544
|
}
|