@dxtmisha/scripts 1.1.1 → 1.1.2

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
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.1.2] - 2026-09-07
6
+
7
+ ### Fixed
8
+ - **Web-Types Generator AST Parsing (`DesignWikiStormItem`)**:
9
+ - Replaced runtime dynamic Node.js ESM imports (`await import(...)`) of `wikiData.ts` with static TypeScript AST parsing via the TypeScript Compiler API (`ts.createSourceFile`).
10
+ - Fixed `ERR_MODULE_NOT_FOUND` resolution errors occurring when `@dxtmisha/scripts` is installed and executed as an external package in consumer repositories containing extensionless TypeScript imports (`'../../../wiki/wiki'`, `'./props'`).
11
+ - Added AST-based extraction for default prop values (`getDefaultsFromProps`) from `props.ts` and design wiki configurations (`getWikiDesign`) from `src/wiki/wiki.ts`.
12
+ - Fixed TypeScript typing in `getSlots()` by removing unsupported `description` access on `StorybookSlotProperty`.
13
+ - Updated unit tests in `src/classes/Design/__tests__/DesignWikiStorm.test.ts` to test AST metadata extraction.
14
+
5
15
  ## [1.1.1] - 2026-09-07
6
16
 
7
17
  ### Added