0.1.0 • Published 7 years ago

babel-plugin-haste-require v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-require-haste

A Babel transformation plugin to allow the usage of modules in a Haste modules system environment. The code for this plugin has been extracted and modified from facebook/fbjs repository.

It will respond to the following modules usage structures:

require('MyModuleName');
import 'MyModule';
import MyModule from 'MyModule';
import {something} from 'MyModule';
import type User from 'MyModule';