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

babel-plugin-replace-import-path

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-replace-import-path

Replace import path

  • 0.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

build pass js-standard-style npm-version license

babel-plugin-replace-import-path

替换 import path 的值

Installation

Install the pkg with npm:

npm i babel-plugin-replace-import-path -D

or yarn

yarn add babel-plugin-replace-import-path -D

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: 'test2',
        dest: 'lib2'
    }
]

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 11 Apr 2018

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