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
The inlang message format needs variant support to prerelease paraglide js. Loris implemented something. I need to verify that everything works as expected.
remove @inlang/sdk 1 from dependencies for v2
update tests
update vitest
Observations
bundle alias is not used (indicates that it's not plugin related and should be unbundled into own entity MESDK-239)
importing bundles: NewBundle, messages: NewMessage, variants: NewVariant might be easier than importing nested bundles nested to avoid duplicate mapping code in every plugin
what about exposing db? complexity stems from transforming the entities as the plugins needs it like groupBy or selectNested. that comes out of the box with kysely
nodeFs is not used in toBeImportedFiles removing it would remove all fs related things from plugins 🥳
matching undefined is desirable
"username=*":
"{username} has to download the app.",
"username=undefined":
"The person has to download the app.",
renaming variant matchers leads to unstable ids aka duplicate variants. solving this seems out of proportion given that the lix host is around the corner.
The text was updated successfully, but these errors were encountered:
It seems like paraglide provided an icu1 plugin to test variants. the inlang message format does not contain information for variant support yet. i will add variant support to the inlang message format, then release paraglide js
Context
The inlang message format needs variant support to prerelease paraglide js. Loris implemented something. I need to verify that everything works as expected.
Observations
bundles: NewBundle, messages: NewMessage, variants: NewVariant
might be easier than importing nested bundles nested to avoid duplicate mapping code in every plugindb
? complexity stems from transforming the entities as the plugins needs it likegroupBy
orselectNested
. that comes out of the box with kyselytoBeImportedFiles
removing it would remove all fs related things from plugins 🥳undefined
is desirableThe text was updated successfully, but these errors were encountered: