Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 862 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 862 Bytes

Folder Modules

Usage

folder-module <input-directory-name>

Or specify a file:

folder-module <input-directory-name> <out-file>

Info

folder-module is a tiny utility for turning a folder of default exports into a single file of exports of the default of each of the individual files within the folder

For example a folder foo/ with files a.js, b.js and default.js will generate the file ./foo.js:

export { default as a } from "./foo/a.js"
export { default as b } from "./foo/b.js"
export { default } from "./foo/default.js"

You can also specify a filename and paths will be resolved to that filename e.g. For the above with an out file name ./bar/baz/foo.js you'll get:

export { default as a } from "../../foo/a.js"
export { default as b } from "../../foo/b.js"
export { default } from "../../foo/default.js"