@vlynk-studios/nodulus-core 1.2.5 → 1.2.6

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/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.6] - 2026-04-11
9
+
10
+ ### Added
11
+ - **Publish CI Validation**: The NPM publish pipeline now validates that the workflow tag versions exactly match the `package.json` descriptor before dispatching the build to the public registry.
12
+ - **Coverage Metrics Baseline**: Bootstrapped robust baseline instrumentation via `@vitest/coverage-v8`, setting dynamic thresholds inside Vite and enforcing total validation in CI environments to prevent regressions.
13
+
14
+ ### Changed
15
+ - **Alias Resolution Predictability**: Centralized runtime assertions within the internal module loading bootstrap path to fail-fast (`ALIAS_NOT_FOUND`) if a manually specified path mapping in `nodulus.config` points to a nonexistent directory.
16
+
17
+ ### Fixed
18
+ - **Undeclared Import Guard**: Bootstrapping now correctly intercepts undeclared cross-module dependencies at runtime; when combined with `strict: true` the app fails explicitly with an `UNDECLARED_IMPORT` validation error, harmonizing runtime guarantees with the CLI's static analysis.
19
+ - **Variable Shadowing Collisions**: Resolved an internal variable scope shadowing defect residing within `sync-tsconfig` logic blocks related to iterator aliases.
20
+ - **Wildcard Alias Generation Anomalies**: Synchronizing configurations containing targeted single-file aliases no longer incorrectly emits wildcard boundaries (`/*`) for properties matching discrete resources instead of expansive directory hierarchies.
21
+
8
22
  ## [1.2.5] - 2026-04-11
9
23
 
10
24
  ### Added
package/dist/cli/index.js CHANGED
@@ -374,9 +374,9 @@ Error: Could not find ${options.tsconfig} at ${configPath}
374
374
  \u2714 tsconfig.json updated \u2014 ${moduleCount} module(s), ${aliasCount} folder alias(es)`));
375
375
  console.log(`Added paths:`);
376
376
  const maxKeyLength = Math.max(...Object.keys(pathsObj).map((k) => k.length));
377
- for (const [key, paths2] of Object.entries(pathsObj)) {
377
+ for (const [key, aliasPaths] of Object.entries(pathsObj)) {
378
378
  const paddedKey = key.padEnd(maxKeyLength);
379
- console.log(` ${pc3.cyan(paddedKey)} \u2192 ${paths2[0]}`);
379
+ console.log(` ${pc3.cyan(paddedKey)} \u2192 ${aliasPaths[0]}`);
380
380
  }
381
381
  console.log("");
382
382
  } catch (err) {