diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2025-11-25 12:03:13 -0400 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2025-11-25 12:04:49 -0400 |
| commit | 95c7c7032556d3adfc3107d11a3e14ab0f4c9145 (patch) | |
| tree | 800d4f7dfe0997d9be1a16cd9586228b1a832dbd /src/data/things/index.js | |
| parent | 3afd5e8f8d6b08ccb9e49e53b0da4423a7d23542 (diff) | |
cacheable-object, data: depend on computed values; initial compat
reaches live-dev-server serve with no errors and serves homepage at all and apparently correctly no page navigation performed no full build performed aimed for preserving existing logic should be no subsequent changes to this commit (amend)
Diffstat (limited to 'src/data/things/index.js')
| -rw-r--r-- | src/data/things/index.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/data/things/index.js b/src/data/things/index.js index 1e9a5e52..09765fd2 100644 --- a/src/data/things/index.js +++ b/src/data/things/index.js @@ -58,6 +58,7 @@ const __dirname = path.dirname( function niceShowAggregate(error, ...opts) { showAggregate(error, { pathToFileURL: (f) => path.relative(__dirname, fileURLToPath(f)), + showClasses: false, ...opts, }); } @@ -152,6 +153,15 @@ function descriptorAggregateHelper({ } catch (error) { niceShowAggregate(error); showFailedClasses(failedClasses); + + /* + if (error.errors) { + for (const sub of error.errors) { + console.error(sub); + } + } + */ + return false; } } |