adnbn 0.0.41 → 0.0.42
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/cli/index.cjs +2 -1
- package/dist/cli/index.cjs.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.cjs
CHANGED
|
@@ -3198,8 +3198,9 @@ var BackgroundEntry = class _BackgroundEntry {
|
|
|
3198
3198
|
}
|
|
3199
3199
|
static name = "background";
|
|
3200
3200
|
async entries() {
|
|
3201
|
+
const options = await this.finder.options();
|
|
3201
3202
|
return /* @__PURE__ */ new Map([
|
|
3202
|
-
[_BackgroundEntry.name,
|
|
3203
|
+
[_BackgroundEntry.name, new Set(options.keys())]
|
|
3203
3204
|
]);
|
|
3204
3205
|
}
|
|
3205
3206
|
async isPersistent() {
|