sfdx-hardis 5.44.2-alpha202507220945.0 → 5.44.2-alpha202507221024.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.
package/CHANGELOG.md CHANGED
@@ -9,6 +9,7 @@ Note: Can be used with `sfdx plugins:install sfdx-hardis@beta` and docker image
9
9
  - Generate ubuntu-based Docker images
10
10
  - docker.io/hardisgroupcom/sfdx-hardis-ubuntu
11
11
  - ghcr.io/hardisgroupcom/sfdx-hardis-ubuntu
12
+ - Display commands in blue for better readability on BitBucket
12
13
 
13
14
  ## [5.44.1] 2025-07-16
14
15
 
@@ -195,7 +195,7 @@ export async function authOrg(orgAlias, options) {
195
195
  loginCommandArgs.push('--set-default');
196
196
  }
197
197
  const commandStr = 'sf ' + loginCommandArgs.join(' ');
198
- uxLog(this, `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.grey(commandStr)))}`);
198
+ uxLog(this, `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.blue(commandStr)))}`);
199
199
  loginResult = crossSpawn.sync('sf', loginCommandArgs, { stdio: 'inherit' });
200
200
  }
201
201
  // Web Login if device login not used
@@ -47,7 +47,7 @@ export function git(options = { output: false, displayCommand: true }) {
47
47
  const gitArgsStr = (gitArgs || []).join(' ');
48
48
  if (!(gitArgsStr.includes('branch -v') || gitArgsStr.includes('config --list --show-origin --null'))) {
49
49
  if (options.displayCommand) {
50
- uxLog(this, `[command] ${c.bold(c.bgWhite(c.grey(command + ' ' + gitArgsStr)))}`);
50
+ uxLog(this, `[command] ${c.bold(c.bgWhite(c.blue(command + ' ' + gitArgsStr)))}`);
51
51
  }
52
52
  }
53
53
  }
@@ -537,7 +537,7 @@ export async function execCommand(command, commandThis, options = {
537
537
  debug: false,
538
538
  spinner: true,
539
539
  }) {
540
- let commandLog = `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.grey(command)))}`;
540
+ let commandLog = `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.blue(command)))}`;
541
541
  const execOptions = { maxBuffer: 10000 * 10000 };
542
542
  if (options.cwd) {
543
543
  execOptions.cwd = options.cwd;
package/oclif.lock CHANGED
@@ -6723,7 +6723,7 @@ form-data@^2.5.0:
6723
6723
  combined-stream "^1.0.6"
6724
6724
  mime-types "^2.1.12"
6725
6725
 
6726
- form-data@^4.0.0, form-data@^4.0.3:
6726
+ form-data@^4.0.0:
6727
6727
  version "4.0.3"
6728
6728
  resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.3.tgz#608b1b3f3e28be0fccf5901fc85fb3641e5cf0ae"
6729
6729
  integrity sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==
@@ -6734,6 +6734,17 @@ form-data@^4.0.0, form-data@^4.0.3:
6734
6734
  hasown "^2.0.2"
6735
6735
  mime-types "^2.1.12"
6736
6736
 
6737
+ form-data@^4.0.4:
6738
+ version "4.0.4"
6739
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4"
6740
+ integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==
6741
+ dependencies:
6742
+ asynckit "^0.4.0"
6743
+ combined-stream "^1.0.8"
6744
+ es-set-tostringtag "^2.1.0"
6745
+ hasown "^2.0.2"
6746
+ mime-types "^2.1.12"
6747
+
6737
6748
  formdata-node@^4.3.2:
6738
6749
  version "4.4.1"
6739
6750
  resolved "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz"