@ui-kitten/processor@6.0.0
Major Changes
e6651adThanks @bataevvlad! - UI Kitten v6: React 19, React Native 0.81, Expo 54, all components migrated to functional, ESM build system, New Architecture ready.
Patch Changes
-
#1871
657fc23Thanks @bataevvlad! - Stop shipping build leftovers in the published tarballs.builder-bob is configured with
source: ".", so it swept the package root into the build output. Every ESM package published alib/module/package.jsonthat was a copy of its own manifest — with no"type": "module"field and amainpointing at a path that does not exist — alongsidelib/module/CHANGELOG.mdandlib/module/tsconfig.build.json. Toolchains that determine module type from the nearestpackage.jsonwould read the ESM output as CommonJS; it only worked because Node falls back to syntax detection. bob now writes its own{"type": "module"}marker instead.@ui-kitten/processoralso shipped 38 spec and spec-config files (its!*.spec.*exclusion only matched the package root, notjs/), which is a third of the tarball. -
#1871
03cad37Thanks @bataevvlad! - Stop publishingjs/src/tests/*. Thefilesfield excluded**/*.spec.*and**/__tests__/**
but not thetests/directory, so six test files (and their.d.ts/.map) shipped in
6.0.0-beta.1. Every@ui-kitten/*package now excludes**/__tests__/**,**/*.spec.*and
**/tests/**consistently.