@lwrjs/diagnostics
Advanced tools
Comparing version 0.15.0-alpha.17 to 0.15.0-alpha.18
@@ -72,2 +72,6 @@ import type { DiagnosticLocation } from '../types.js'; | ||
}; | ||
INVALID_ORIGIN: (configProperty: string, actualProp: string) => { | ||
category: "lwrConfig/invalidSchema"; | ||
message: string; | ||
}; | ||
INVALID_FILE_PATTERN: (configProperty: string, actualProp: string) => { | ||
@@ -125,3 +129,7 @@ category: "lwrConfig/invalidSchema"; | ||
}; | ||
INCOMPLETE_CORE_PROXY: () => { | ||
category: "lwrConfig/invalidSchema"; | ||
message: string; | ||
}; | ||
}>; | ||
//# sourceMappingURL=configParser.d.ts.map |
@@ -66,2 +66,6 @@ import { createDiagnosticsCategory } from './core-diagnostics.js'; | ||
}), | ||
INVALID_ORIGIN: (configProperty, actualProp) => ({ | ||
category: 'lwrConfig/invalidSchema', | ||
message: `Property "${configProperty}" must be a full URI string with a scheme (eg: "https://site.com"), received ${actualProp}`, | ||
}), | ||
INVALID_FILE_PATTERN: (configProperty, actualProp) => ({ | ||
@@ -119,3 +123,7 @@ category: 'lwrConfig/invalidSchema', | ||
}), | ||
INCOMPLETE_CORE_PROXY: () => ({ | ||
category: 'lwrConfig/invalidSchema', | ||
message: `The coreProxy must have either a "servername" or a "sitePath"`, | ||
}), | ||
}); | ||
//# sourceMappingURL=configParser.js.map |
@@ -72,2 +72,6 @@ export declare const descriptions: { | ||
}; | ||
INVALID_ORIGIN: (configProperty: string, actualProp: string) => { | ||
category: "lwrConfig/invalidSchema"; | ||
message: string; | ||
}; | ||
INVALID_FILE_PATTERN: (configProperty: string, actualProp: string) => { | ||
@@ -125,2 +129,6 @@ category: "lwrConfig/invalidSchema"; | ||
}; | ||
INCOMPLETE_CORE_PROXY: () => { | ||
category: "lwrConfig/invalidSchema"; | ||
message: string; | ||
}; | ||
}>; | ||
@@ -127,0 +135,0 @@ UNRESOLVABLE: import("../types.js").OutputMessagesCategory<{ |
@@ -7,3 +7,3 @@ { | ||
}, | ||
"version": "0.15.0-alpha.17", | ||
"version": "0.15.0-alpha.18", | ||
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview", | ||
@@ -39,3 +39,3 @@ "repository": { | ||
"devDependencies": { | ||
"@lwrjs/types": "0.15.0-alpha.17", | ||
"@lwrjs/types": "0.15.0-alpha.18", | ||
"jest": "^26.6.3", | ||
@@ -51,3 +51,3 @@ "ts-jest": "^26.5.6", | ||
}, | ||
"gitHead": "57b524a9be3a50ee50b7f6979a01bae458d09747" | ||
"gitHead": "fefc639770948be769b1ace03b7759e7b8906cae" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77819
1917