Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mapify

lusini11WTFPL0.1.0

Alias mappings for browserify

browserify-plugin, alias, mapping, expose

readme

Build Status Dependencies NPM version

mapify

A browserify plugin to create alias mappings for directories.

Usage

var browserify = require('browserify'),
    b = browserify(__dirname);

b.plugin('mapify', {
    cwd: 'foo/bar/app',
    pattern: '**/*.js',
    expose: 'app'
});

b.bundle();

// this maps e.g. foo/bar/app/index.js to app/index

The aliases are built with path.join so they will use the system's path separator. You can also override the path separator (e.g. you're on Windows but prefer forward slashes).

var browserify = require('browserify'),
    b = browserify(__dirname);

b.plugin('mapify', {
    pathSeparator: '/',
    entries: [{
      cwd: 'foo/bar/app',
      pattern: '**/*.js',
      expose: 'app'
    }]
});

b.bundle();

// this maps e.g. foo\\bar\\app\\index.js to app/index

options

An array or object which defines an alias mapping.

cwd

Entry point for the alias.

pattern

Glob pattern.

expose

Name of the alias.

pathSeparator

String to override system's path separator.

entries

Array of alias mappings.