babel-plugin-module-alias

Babel plugin to rewrite the path in require() and ES6 import

WARNING: This project has been renamed to babel-plugin-module-resolver. Install babel-plugin-module-resolver for new features
Last updated 10 years ago by tleunen .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install babel-plugin-module-alias 
SYNC missed versions from official npm registry.

babel-plugin-module-alias Build Status Coverage Status

A babel plugin to rewrite (map, alias, resolve) directories as different directories during the Babel process. It's particularly useful when you have files you don't want to use with relative paths (especially in big projects).

Description

Instead of using relative paths in your project, you'll be able to use an alias. Here an simple example:

// Instead of using this;
import MyUtilFn from '../../../../utils/MyUtilFn';
// Use that:
import MyUtilFn from 'utils/MyUtilFn';

With this plugin, you'll be able to map files or directories to the path you want.

Note: It also work for require().

Note 2: You can use the npm: prefix in your plugin configuration to map a node module.

Usage

Install the plugin

$ npm install --save-dev babel babel-plugin-module-alias

Specify the plugin in your .babelrc with the custom mapping.

{
  "plugins": [
    ["module-alias", [
      { "src": "./src/utils", "expose": "utils" },
      { "src": "./src/components", "expose": "awesome/components" },
      { "src": "npm:lodash", "expose": "underscore" }
    ]]
  ]
}

If you're using eslint-plugin-import, you should use eslint-import-resolver-babel-module-alias to avoid having false errors.

License

MIT, see LICENSE.md for details.

Current Tags

  • 1.6.0                                ...           latest (10 years ago)

11 Versions

  • 1.6.0 [deprecated]           ...           10 years ago
  • 1.5.0 [deprecated]           ...           10 years ago
  • 1.4.1 [deprecated]           ...           10 years ago
  • 1.4.0 [deprecated]           ...           10 years ago
  • 1.3.0 [deprecated]           ...           10 years ago
  • 1.2.0 [deprecated]           ...           10 years ago
  • 1.1.1 [deprecated]           ...           10 years ago
  • 1.1.0 [deprecated]           ...           10 years ago
  • 1.0.0 [deprecated]           ...           10 years ago
  • 0.2.0 [deprecated]           ...           10 years ago
  • 0.1.2 [deprecated]           ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 10
Last Month 11
Dependencies (3)
Dev Dependencies (0)
None
Dependents (4)

Copyright 2013 - present © cnpmjs.org | Home |