octo-dev 0.5.1 → 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octo-dev",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "CLI for monorepo build orchestration, semantic versioning, and local infrastructure management",
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('Monorepo build orchestration, versioning, and infrastructure CLI')
14
- .version('0.5.1');
14
+ .version('0.5.2');
15
15
 
16
16
  program
17
17
  .command('init')
@@ -3,6 +3,10 @@ import pino from 'pino';
3
3
  export const logger = pino({
4
4
  transport: {
5
5
  target: 'pino-pretty',
6
- options: { colorize: true },
6
+ options: {
7
+ colorize: true,
8
+ ignore: 'pid,hostname,time',
9
+ messageFormat: '{msg}',
10
+ },
7
11
  },
8
12
  });