@lwrjs/fs-asset-provider 0.11.4 → 0.11.6
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/build/cjs/index.cjs +4 -1
- package/build/es/index.js +4 -1
- package/package.json +5 -5
package/build/cjs/index.cjs
CHANGED
|
@@ -95,7 +95,10 @@ var FsAssetProvider = class {
|
|
|
95
95
|
this.watcher.add(assetPath2);
|
|
96
96
|
}
|
|
97
97
|
} else {
|
|
98
|
-
import_diagnostics.logger.debug(
|
|
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(
|
|
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.
|
|
7
|
+
"version": "0.11.6",
|
|
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.
|
|
34
|
-
"@lwrjs/shared-utils": "0.11.
|
|
33
|
+
"@lwrjs/diagnostics": "0.11.6",
|
|
34
|
+
"@lwrjs/shared-utils": "0.11.6",
|
|
35
35
|
"fs-extra": "^11.1.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@lwrjs/types": "0.11.
|
|
38
|
+
"@lwrjs/types": "0.11.6"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=16.0.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "415e25c05b4b1a0356fb89801f1242e8f73143e3"
|
|
44
44
|
}
|