@fairfox/polly 0.49.0 → 0.51.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.
@@ -2423,7 +2423,7 @@ var types = {
2423
2423
  return [];
2424
2424
  },
2425
2425
  run: async ({ rootDir, config }) => {
2426
- const patterns = (config ?? {}).workspaces ?? ["packages/*", "."];
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: (cfg ?? {}).noGit === false ? "false" : "true"
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=ACEE4FF1CB9C29CD64756E2164756E21
2853
+ //# debugId=358583C5FA8FB54F64756E2164756E21