@capraconsulting/cals-cli 3.18.0 → 3.18.2

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/lib/cals-cli.mjs CHANGED
@@ -19,7 +19,7 @@ import yaml from 'js-yaml';
19
19
  import { z } from 'zod';
20
20
  import { execa } from 'execa';
21
21
 
22
- var version = "3.18.0";
22
+ var version = "3.18.2";
23
23
  var engines = {
24
24
  node: ">=22.14.0"
25
25
  };
@@ -1428,7 +1428,7 @@ const command = {
1428
1428
  reporter.status(`Fetching repositories from ${argv.org}...`);
1429
1429
  const repos = await github.getOrgRepoList({ org: argv.org });
1430
1430
  const topics = new Set();
1431
- for (const repo of repos) {
1431
+ for (const repo of repos.filter((it) => !it.isArchived)) {
1432
1432
  for (const edge of repo.repositoryTopics.edges) {
1433
1433
  const name = edge.node.topic.name;
1434
1434
  if (name.startsWith("customer-")) {
@@ -1466,7 +1466,7 @@ async function main() {
1466
1466
  process__default.exit(1);
1467
1467
  }
1468
1468
  await yargs(hideBin(process__default.argv))
1469
- .usage(`cals v${version} (build: ${"2026-02-23T11:17:30.623Z"})
1469
+ .usage(`cals v${version} (build: ${"2026-02-25T13:26:00.757Z"})
1470
1470
 
1471
1471
  A CLI for managing GitHub repositories.
1472
1472
 
package/lib/index.es.js CHANGED
@@ -9,7 +9,7 @@ import { Octokit } from '@octokit/rest';
9
9
  import pLimit from 'p-limit';
10
10
  import keytar from 'keytar';
11
11
 
12
- var version = "3.18.0";
12
+ var version = "3.18.2";
13
13
 
14
14
  function uniq(array) {
15
15
  return Array.from(new Set(array));
package/lib/index.js CHANGED
@@ -9,7 +9,7 @@ import { Octokit } from '@octokit/rest';
9
9
  import pLimit from 'p-limit';
10
10
  import keytar from 'keytar';
11
11
 
12
- var version = "3.18.0";
12
+ var version = "3.18.2";
13
13
 
14
14
  function uniq(array) {
15
15
  return Array.from(new Set(array));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capraconsulting/cals-cli",
3
- "version": "3.18.0",
3
+ "version": "3.18.2",
4
4
  "description": "CLI for repeatable tasks in CALS",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",