@riboseinc/anafero-cli 0.0.59 → 0.0.60

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.css CHANGED
@@ -31869,7 +31869,11 @@ tbody.table_0cdc494a_hm005a_spectrum-Table-body .table_0cdc494a_hm005a_spectrum-
31869
31869
  var(--spectrum-alias-highlight-hover) 2rem);
31870
31870
  color: var(--spectrum-accent-color-1300);
31871
31871
  > li {
31872
- display: inline-block;
31872
+ display: inline;
31873
+ word-break: keep-all;
31874
+ overflow-wrap: break-word;
31875
+ white-space-collapse: collapse;
31876
+ text-wrap-style: balance;
31873
31877
  > a {
31874
31878
  &:link,
31875
31879
  &:visited {
package/build-site.mjs CHANGED
@@ -316902,8 +316902,9 @@ function processAttributes(el, locateResource, reverseResource, onIntegrityViola
316902
316902
  el.setAttribute("id", inferredID);
316903
316903
  } else if (["href", "src"].includes(attr.name)) {
316904
316904
  const isHTTPHref = attr.name === "href" && attr.value.startsWith("http");
316905
+ const isMailtoHref = attr.name === "href" && attr.value.startsWith("mailto:");
316905
316906
  const isDataSrc = attr.name === "src" && attr.value.startsWith("data:");
316906
- if (!isHTTPHref && !isDataSrc) {
316907
+ if (!isHTTPHref && !isDataSrc && !isMailtoHref) {
316907
316908
  let resolvedResourcePath;
316908
316909
  try {
316909
316910
  resolvedResourcePath = locateResource(attr.value);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@riboseinc/anafero-cli",
3
3
  "type": "module",
4
- "version": "0.0.59",
4
+ "version": "0.0.60",
5
5
  "packageManager": "yarn@4.5.0",
6
6
  "bin": {
7
7
  "build-site": "build-site.mjs"