Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-replace-import

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-replace-import

Replace import path

  • 0.7.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-replace-import

Installation

npm i babel-plugin-replace-import

or yarn

yarn add babel-plugin-replace-import

Usage

Via .babelrc or babel-loader.

{
  "plugins": [["replace-import-path", options]]
}

options

options can be object.

{
    src: 'test',
    dest: 'lib'
}

options can be an array.

[
    {
        src: 'test1',
        dest: 'lib1'
    },
    {
        src: /test\/(\w+)\/src/,
        dest: 'test/$1'
    }
]

Example

{ "src": "test1/aaa", dest: "test2/bbb" }

import { A } from 'test1/aaa';

↓ ↓ ↓ ↓ ↓ ↓

var a = require('test2/bbb');

LICENSE

MIT

Keywords

FAQs

Package last updated on 12 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc