astro-accelerator-utils 0.3.31 → 0.3.32

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/lib/v1/cache.mjs +0 -1
  2. package/package.json +1 -1
package/lib/v1/cache.mjs CHANGED
@@ -44,7 +44,6 @@ export class Cache {
44
44
  var date_time = new Date();
45
45
  let timeDifference = Math.abs((date_time.getTime() - mtime.getTime()) / 1000);
46
46
  if (timeDifference < this.maxAge) {
47
- console.log('Cache hit', key);
48
47
  const content = fs.readFileSync(itemPath).toString();
49
48
  return JSON.parse(content);
50
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-accelerator-utils",
3
- "version": "0.3.31",
3
+ "version": "0.3.32",
4
4
  "description": "Astro utilities for Astro Accelerator.",
5
5
  "main": "index.mjs",
6
6
  "type": "module",