@riboseinc/anafero-cli 0.0.49 → 0.0.50
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-site.mjs
CHANGED
|
@@ -316305,7 +316305,7 @@ var Resource = import_react127.default.forwardRef(function({
|
|
|
316305
316305
|
processGeneratedDOM(domEl, locateResource, () => "", (msg) => console.warn(msg));
|
|
316306
316306
|
return domEl.innerHTML;
|
|
316307
316307
|
} else {
|
|
316308
|
-
console.warn("ProseMirror content DOM is not an Element; possibly
|
|
316308
|
+
console.warn("ProseMirror content DOM is not an Element; possibly some other type of Node", domNode);
|
|
316309
316309
|
return void 0;
|
|
316310
316310
|
}
|
|
316311
316311
|
} else {
|
|
@@ -316600,7 +316600,7 @@ var makeContentReader = async function(entryPointURI, storeAdapters, findContent
|
|
|
316600
316600
|
expanded = normalizedFileURI;
|
|
316601
316601
|
}
|
|
316602
316602
|
} else {
|
|
316603
|
-
expanded =
|
|
316603
|
+
expanded = uri;
|
|
316604
316604
|
}
|
|
316605
316605
|
return expanded;
|
|
316606
316606
|
}
|
|
@@ -317027,9 +317027,9 @@ async function* generateVersion(cfg, fetchBlobAtThisVersion, {
|
|
|
317027
317027
|
const layouts = layoutModules[cfg.resourceLayouts[0]].layouts;
|
|
317028
317028
|
const defaultLayout = layouts[0].layout;
|
|
317029
317029
|
dependencyNotice(`Building with:
|
|
317030
|
-
Store adapters: ${Object.values(storeAdapters).map((m2) => m2.name).join(", ")}
|
|
317031
|
-
Content adapters: ${Object.values(contentAdapters).map((m2) => m2.name).join(", ")}
|
|
317032
|
-
Layouts: ${Object.values(layoutModules).map((m2) => m2.name).join(", ")}
|
|
317030
|
+
Store adapters: ${Object.values(storeAdapters).map((m2) => `${m2.name}:${m2.version}`).join(", ")}
|
|
317031
|
+
Content adapters: ${Object.values(contentAdapters).map((m2) => `${m2.name}:${m2.version}`).join(", ")}
|
|
317032
|
+
Layouts: ${Object.values(layoutModules).map((m2) => `${m2.name}:${m2.version}`).join(", ")}
|
|
317033
317033
|
`, "info");
|
|
317034
317034
|
if (!defaultLayout || cfg.storeAdapters.length < 1 || cfg.contentAdapters.length < 1) {
|
|
317035
317035
|
throw new Error("Missing configuration: need at least one each module: layout, store adapter, content adapter");
|
package/package.json
CHANGED
|
index bc864d7..fbeb9e9 100644
|
|
|
Binary file
|