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
Adding babel relative imports to better manage UIWeb sdk
Describe the Proposal
Current UIWeb sdk becomes hard to manage since relative imports rely on finding folder by ../... This PR enables babel plugin to define naming for specific folders making the process easier.
Use Case
Example: import { extractWebLink, getFormattedMetadata, hasWebLink } from '../../../../../utilities'; becomes import { extractWebLink, getFormattedMetadata, hasWebLink } from 'utilities';
Current Limitations
NA
The text was updated successfully, but these errors were encountered:
Proposal name
Adding babel relative imports to better manage UIWeb sdk
Describe the Proposal
Current UIWeb sdk becomes hard to manage since relative imports rely on finding folder by
../..
. This PR enables babel plugin to define naming for specific folders making the process easier.Use Case
Example:
import { extractWebLink, getFormattedMetadata, hasWebLink } from '../../../../../utilities';
becomesimport { extractWebLink, getFormattedMetadata, hasWebLink } from 'utilities';
Current Limitations
NA
The text was updated successfully, but these errors were encountered: