@fairfox/polly 0.49.0 → 0.50.0
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/src/mesh.js +25 -14
- package/dist/src/mesh.js.map +4 -4
- package/dist/src/peer.js +16 -10
- package/dist/src/peer.js.map +4 -4
- package/dist/src/shared/lib/mesh-client.d.ts +31 -9
- package/dist/src/shared/lib/mesh-network-adapter.d.ts +22 -5
- package/dist/tools/quality/src/cli.js +3 -3
- package/dist/tools/quality/src/cli.js.map +4 -4
- package/dist/tools/quality/src/index.js +3 -3
- package/dist/tools/quality/src/index.js.map +4 -4
- package/package.json +1 -1
|
@@ -2423,7 +2423,7 @@ var types = {
|
|
|
2423
2423
|
return [];
|
|
2424
2424
|
},
|
|
2425
2425
|
run: async ({ rootDir, config }) => {
|
|
2426
|
-
const patterns =
|
|
2426
|
+
const patterns = config?.workspaces ?? ["packages/*", "."];
|
|
2427
2427
|
const packages = await findWorkspaces(rootDir, patterns);
|
|
2428
2428
|
if (packages.length === 0)
|
|
2429
2429
|
return { ok: true, messages: ["no workspace packages found"] };
|
|
@@ -2532,7 +2532,7 @@ var secrets = {
|
|
|
2532
2532
|
return [join10(root, c.configPath)];
|
|
2533
2533
|
},
|
|
2534
2534
|
cacheKeyExtras: (cfg) => ({
|
|
2535
|
-
noGit:
|
|
2535
|
+
noGit: cfg?.noGit === false ? "false" : "true"
|
|
2536
2536
|
}),
|
|
2537
2537
|
run: async ({ rootDir, config }) => {
|
|
2538
2538
|
const cfg = config ?? {};
|
|
@@ -2850,4 +2850,4 @@ export {
|
|
|
2850
2850
|
DEFAULT_SHARED_COMPONENT_RULES
|
|
2851
2851
|
};
|
|
2852
2852
|
|
|
2853
|
-
//# debugId=
|
|
2853
|
+
//# debugId=358583C5FA8FB54F64756E2164756E21
|