v1.3.1
Patch Changes
-
#17
582f100Thanks @flyon! - Fixed an infinite recursion inlinkedPackage. The exported function was spreadinglinkedPackage(packageName)(itself) into its own return value instead of delegating tocoreLinkedPackage(packageName)from@_linked/core, so any call toimport { linkedPackage } from '@_linked/react/package'followed bylinkedPackage(...)immediately blew the stack withMaximum call stack size exceeded. Almost certainly the root cause of the "stack overflow during client hydration" symptom reported against 1.3.0.linkedPackage(name)now correctly returns{ linkedComponent, linkedSetComponent, ...coreLinkedPackage(name) }— i.e. the React-only helpers plus everything@_linked/core'slinkedPackageprovides (linkedShape,linkedUtil,linkedOntology,registerPackageExport,packageExports,packageName, …).