indexr icon indicating copy to clipboard operation
indexr copied to clipboard

Autogenerate dynamic ES6 index modules.

Results 12 indexr issues
Sort by recently updated
recently updated
newest added

Hi there, It would be useful if you could specify a different formatter than camelCase for the exported module name (`export { default as moduleName } from '/path/to/module.name'`). I am...

When indexr is exporting arrays. Should modules require other modules first in the list that intent should be able to be specified with some sort of dependency manifest.

Allow for configuration via configuration file. probably `.indexrc.js` or something similar

This probably needs to be done outside of mocha as we need to import the code we have created. Not sure exactly how best to make this happen but should...

Example: ``` javascript import {list, object, reducers} from './plugins/index.r'; ``` This means we need to output only a single file but to implement we would need to have https://github.com/ryardley/indexr/issues/12 done...

# Providing both named exports and custom named collections Indexr should provide both named exports and custom named collections. Modules are included by default within an all collection as well...

## Default outputFilename is `index.js` whilst headers are checked to know whether or not to overwrite an index file. The `create-index` package uses a specific string that acts as a...

## Exporting index files for libraries I am seeing quite a lot of this from libraries: ``` javascript // Loading partial methods in to limit dependencies import flatten from 'lodash/flatten';...

Hi, Nice project! I have however a question; I usually name my export like following: ``` javascript // test.js export function foo() { return 'foo'; } export function foo() {...