You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, because the function exported from ./lib which defines the manifests for that component is called unconditionally in index.ts to support running jk generate directly, if there are required parameters that are asserted, library consumers (i.e., people who import the ./lib function by way of index.ts) will face runtime errors. Either
a) all components must be able to be rendered without any provided parameters
or
b) library users should import ./lib directly and not import index.ts
The text was updated successfully, but these errors were encountered:
At the moment, because the function exported from
./lib
which defines the manifests for that component is called unconditionally inindex.ts
to support runningjk generate
directly, if there are required parameters that are asserted, library consumers (i.e., people who import the./lib
function by way ofindex.ts
) will face runtime errors. Eithera) all components must be able to be rendered without any provided parameters
or
b) library users should import
./lib
directly and not importindex.ts
The text was updated successfully, but these errors were encountered: