@lwrjs/fs-asset-provider 0.11.4 → 0.11.5

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.
@@ -95,7 +95,10 @@ var FsAssetProvider = class {
95
95
  this.watcher.add(assetPath2);
96
96
  }
97
97
  } else {
98
- import_diagnostics.logger.debug(`[${this.name}] Asset ${fullAssetPath} did not exist on filesystem at ${assetPath2}`);
98
+ import_diagnostics.logger.debug({
99
+ label: `${this.name}`,
100
+ message: `Asset ${fullAssetPath} did not exist on filesystem at ${assetPath2}`
101
+ });
99
102
  return void 0;
100
103
  }
101
104
  }
package/build/es/index.js CHANGED
@@ -74,7 +74,10 @@ export default class FsAssetProvider {
74
74
  }
75
75
  }
76
76
  else {
77
- logger.debug(`[${this.name}] Asset ${fullAssetPath} did not exist on filesystem at ${assetPath}`);
77
+ logger.debug({
78
+ label: `${this.name}`,
79
+ message: `Asset ${fullAssetPath} did not exist on filesystem at ${assetPath}`,
80
+ });
78
81
  // returned undefined move on to next provider
79
82
  return undefined;
80
83
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.11.4",
7
+ "version": "0.11.5",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -30,15 +30,15 @@
30
30
  "build/**/*.d.ts"
31
31
  ],
32
32
  "dependencies": {
33
- "@lwrjs/diagnostics": "0.11.4",
34
- "@lwrjs/shared-utils": "0.11.4",
33
+ "@lwrjs/diagnostics": "0.11.5",
34
+ "@lwrjs/shared-utils": "0.11.5",
35
35
  "fs-extra": "^11.1.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@lwrjs/types": "0.11.4"
38
+ "@lwrjs/types": "0.11.5"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=16.0.0"
42
42
  },
43
- "gitHead": "5528cfc12174d4800ff42db1691d14c5d194f7d6"
43
+ "gitHead": "b1a54889dd55baed1bf61ceb497d251958415595"
44
44
  }