JSPM

mapify

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q40323F
  • License WTFPL

Alias mappings for browserify

Package Exports

  • mapify

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mapify) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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.