@capawesome/cli 2.1.4-dev.6aa4113.1756747593 → 2.1.4-dev.6aa4113.1756747594

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.
@@ -1,7 +1,13 @@
1
1
  import { compareVersions, parseBuildNumber, parseVersion, versionToBuildNumber, versionToString, } from '../../utils/version.js';
2
- import { MobileProject } from '@trapezedev/project';
2
+ import { MobileProject, Logger } from '@trapezedev/project';
3
3
  import { existsSync, readFileSync } from 'fs';
4
4
  import { join } from 'path';
5
+ // Disable Trapeze logging
6
+ Logger.log = () => { };
7
+ Logger.v = () => { };
8
+ Logger.debug = () => { };
9
+ Logger.warn = () => { };
10
+ Logger.error = () => { };
5
11
  export class VersionService {
6
12
  projectPath;
7
13
  constructor(projectPath = process.cwd()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capawesome/cli",
3
- "version": "2.1.4-dev.6aa4113.1756747593",
3
+ "version": "2.1.4-dev.6aa4113.1756747594",
4
4
  "description": "The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.",
5
5
  "type": "module",
6
6
  "scripts": {