@lwrjs/diagnostics 0.8.0-alpha.4 → 0.8.0-alpha.7
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.
|
@@ -30,6 +30,6 @@ var import_core_diagnostics = __toModule(require("./core-diagnostics.cjs"));
|
|
|
30
30
|
var server = (0, import_core_diagnostics.createDiagnosticsCategory)({
|
|
31
31
|
WARMUP_ERROR: (error) => ({
|
|
32
32
|
category: "lwrServer/warmupError",
|
|
33
|
-
message: `An error
|
|
33
|
+
message: `An error occurred during warmup: ${error}`
|
|
34
34
|
})
|
|
35
35
|
});
|
|
@@ -2,7 +2,7 @@ import { createDiagnosticsCategory } from './core-diagnostics.js';
|
|
|
2
2
|
export const server = createDiagnosticsCategory({
|
|
3
3
|
WARMUP_ERROR: (error) => ({
|
|
4
4
|
category: 'lwrServer/warmupError',
|
|
5
|
-
message: `An error
|
|
5
|
+
message: `An error occurred during warmup: ${error}`,
|
|
6
6
|
}),
|
|
7
7
|
});
|
|
8
8
|
//# sourceMappingURL=server.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.8.0-alpha.
|
|
7
|
+
"version": "0.8.0-alpha.7",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"build/**/*.d.ts"
|
|
31
31
|
],
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@lwrjs/types": "0.8.0-alpha.
|
|
33
|
+
"@lwrjs/types": "0.8.0-alpha.7"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=14.15.4 <19"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "5ce7bdfff149ccdb761e11e6caab11abfffe2c0b"
|
|
39
39
|
}
|