Skip to content

Instantly share code, notes, and snippets.

@developit
Created November 12, 2019 19:57
Show Gist options
  • Save developit/c2955c411da054a4e7137fc1f92270b1 to your computer and use it in GitHub Desktop.
Save developit/c2955c411da054a4e7137fc1f92270b1 to your computer and use it in GitHub Desktop.
babel-plugin-dynamic-import-polyfill
export default ({ types: t }) => {
return {
name: 'transform-import-alias',
visitor: {
Import(path, state) {
const identifier = state.opts.alias || '$$import';
path.replaceWith(t.identifier(identifier));
}
}
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment