@talend/babel-plugin-import-from-index
Advanced tools
Weekly downloads
Readme
This module is a babel plugin that transform default imports from specific file, into named imports from index.
Before
import React from 'react';
import { SidePanel } from '@talend/react-components';
import Actions, { ActionButton, ActionDropdown } from '@talend/react-components/lib/actions';
import List from '@talend/react-components/lib/List';
After
import React from 'react';
import { SidePanel, Actions, ActionButton, ActionDropdown, List } from '@talend/react-components';
Installation
npm i --dev @talend/babel-plugin-import-from-index
yarn add -D @talend/babel-plugin-import-from-index
Configuration
// .babelrc.json
{
"plugins": ["@talend/babel-plugin-import-from-index"]
}
FAQs
Transform default imports from specific path to named import from index
The npm package @talend/babel-plugin-import-from-index receives a total of 460 weekly downloads. As such, @talend/babel-plugin-import-from-index popularity was classified as not popular.
We found that @talend/babel-plugin-import-from-index demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.