@omnia/tooling-composers 8.0.264-dev → 8.0.266-dev
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.
|
@@ -256,6 +256,9 @@ class LoadableManifestRegistry {
|
|
|
256
256
|
for (let dep of LoadableManifestRegistry.ManifestDependencies.get(manifestIdWithDep)) {
|
|
257
257
|
if (dep.externalOmniaServiceId == null) {
|
|
258
258
|
const manifestDependency = this.ClientManifests.get(dep.manifestId);
|
|
259
|
+
if (!manifestDependency) {
|
|
260
|
+
throw new Error("Manifest: " + manifestIdWithDep + " has dependency to " + dep.manifestId + " which could not be found");
|
|
261
|
+
}
|
|
259
262
|
// validate dependencies across manifest targets
|
|
260
263
|
// only allow dependency to manifest the same target or is public target
|
|
261
264
|
if (clientManifestWithDep.target !== manifestDependency.target && manifestDependency.target !== models_1.ClientManifestTargetTypes.public) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/tooling-composers",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.266-dev",
|
|
5
5
|
"description": "Provide tooling to work with manifest things.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Precio Fishbone",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
-
"@omnia/tooling": "8.0.
|
|
22
|
+
"@omnia/fx-models": "8.0.266-dev",
|
|
23
|
+
"@omnia/tooling": "8.0.266-dev",
|
|
24
24
|
"deep-extend": "0.6.0",
|
|
25
25
|
"fs-extra": "11.1.0",
|
|
26
26
|
"del": "6.0.0",
|