octo-dev 0.7.0 → 0.7.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octo-dev",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Build orchestration, semantic versioning, and local infrastructure management for repository workspaces",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/cli/index.ts CHANGED
@@ -11,7 +11,7 @@ const program = new Command();
11
11
  program
12
12
  .name('octo')
13
13
  .description('Build orchestration, semantic versioning, and local infrastructure management for repository workspaces')
14
- .version('0.7.0');
14
+ .version('0.7.1');
15
15
 
16
16
  program
17
17
  .command('init')
@@ -5,7 +5,7 @@ export const logger = pino({
5
5
  target: 'pino-pretty',
6
6
  options: {
7
7
  colorize: true,
8
- ignore: 'pid,hostname,time',
8
+ ignore: 'pid,hostname,time,level',
9
9
  messageFormat: '{msg}',
10
10
  },
11
11
  },
@@ -27,6 +27,7 @@ export async function ensureRepositories(manifest: OctoManifest, rootDir: string
27
27
 
28
28
  logger.info(`${pending.length} repository(ies) to clone.`);
29
29
 
30
+ // Acquire token once for all clones
30
31
  const token = await acquireGitToken();
31
32
 
32
33
  try {