🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

rollup-plugin-paths

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-paths

Let you use the same variables at different directory.

Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
82
-9.89%
Maintainers
1
Weekly downloads
 
Created
Source

rollup-plugin-paths

Let you use the same variables at different directory, like this:

|-- entry.js
|-- main.js
|-- pages/
    |-- about.js
|-- src/
    |-- lib/
        |-- foo/
            |-- one.js
            |-- two.js
|-- vendors/
    |-- jquery.js

main.js

// from src/lib/foo/one.js
import { One } from 'foo@one.js'

// from src/lib/foo/two.js
import { Two } from 'two'

// from vendors/jquery.js
import 'jquery'

pages/about.js

// from src/lib/foo/one.js
import { One } from 'foo@one.js';

// from vendors/jquery.js
import 'jquery'

Installation

$ npm install --save-dev rollup-plugin-paths

Usage

// rollup.config.js
import resolve from 'rollup-plugin-paths'

export default {
  entry: 'entry.js',
  dest: 'bundle.js',
  plugins: [
    resolve({
      // Define a directory width suffix `@`
      "foo@": "./src/lib/foo/",
      // Define a path
      "jquery": "./vendors/jquery.js",
      // Define a path width a defined directory
      "two": "foo@two.js"
    })
  ]
}
  • The path is relative to entry.
  • You must use suffix to define the path. ./vendors/jquery is wrong, please do it like this ./vendors/jquery.js
  • Only use one directory variable in path. foo@goo@one.js is wrong

License

MIT

Keywords

rollup-plugin-paths

FAQs

Package last updated on 24 Mar 2017

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