@gearbox-protocol/deploy-tools 4.61.32 → 4.61.33

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.
Files changed (2) hide show
  1. package/dist/index.mjs +5 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -317431,6 +317431,7 @@ var Auditor = class {
317431
317431
  this.#logger.trace(`Checking audits for ${filePath} in ${repo}`);
317432
317432
  file.audits = await this.#findMatches(file);
317433
317433
  if (!file.audits?.length && this.#dumpMissing) {
317434
+ this.#logger.warn(`Cannot find audits for ${filePath} in ${repo}`);
317434
317435
  const dumpDest = path2.resolve(this.#missingDir, repo, filePath);
317435
317436
  mkdirSync(path2.dirname(dumpDest), { recursive: true });
317436
317437
  await writeFile(dumpDest, file.buffer);
@@ -317451,6 +317452,9 @@ var Auditor = class {
317451
317452
  result.push(repoAudit);
317452
317453
  }
317453
317454
  }
317455
+ if (!result.length) {
317456
+ this.#logger.warn(`No audits found for ${file.path} in ${file.repo}, checked ${repoAudits.length} audits`);
317457
+ }
317454
317458
  return result.length ? result : void 0;
317455
317459
  }
317456
317460
  /**
@@ -335787,7 +335791,7 @@ function getRenderer(opts) {
335787
335791
  }
335788
335792
 
335789
335793
  // package.json
335790
- var version2 = "4.61.32";
335794
+ var version2 = "4.61.33";
335791
335795
 
335792
335796
  // src/version.ts
335793
335797
  var version_default = version2;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/deploy-tools",
3
3
  "description": "Gearbox deploy tools",
4
- "version": "4.61.32",
4
+ "version": "4.61.33",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"