@riboseinc/anafero-cli 0.0.55 → 0.0.56
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/bootstrap.js +4 -2
- package/bootstrap.js.map +2 -2
- package/build-site.mjs +136 -122
- package/package.json +1 -1
package/bootstrap.js
CHANGED
|
@@ -69039,7 +69039,9 @@ schema (${ast._tag}): ${ast}`;
|
|
|
69039
69039
|
// TODO: rich ProseMirror labels?
|
|
69040
69040
|
labelInPlainText: String$2.pipe(nonEmptyString3()),
|
|
69041
69041
|
// TODO: proper schema for ISO language IDs
|
|
69042
|
-
primaryLanguageID: String$2.pipe(optional2)
|
|
69042
|
+
primaryLanguageID: String$2.pipe(optional2),
|
|
69043
|
+
/** License/copyright for the resource in question. */
|
|
69044
|
+
license: Any2.pipe(optional2)
|
|
69043
69045
|
}));
|
|
69044
69046
|
DEFAULT_LOCALE = {
|
|
69045
69047
|
ar: "ar-AE",
|
|
@@ -110365,7 +110367,7 @@ schema (${ast._tag}): ${ast}`;
|
|
|
110365
110367
|
const lunrStopWordFilter = import_lunr2.default.stopWordFilter;
|
|
110366
110368
|
import_lunr2.default.stopWordFilter = function(token) {
|
|
110367
110369
|
return lunrStopWordFilter(token) && !nonDefaultLanguages.map(
|
|
110368
|
-
(lang) => import_lunr2.default[lang].stopWordFilter(token)
|
|
110370
|
+
(lang) => !!import_lunr2.default[lang].stopWordFilter(token)
|
|
110369
110371
|
).includes(false) ? token : void 0;
|
|
110370
110372
|
};
|
|
110371
110373
|
}
|