Skip to content

Commit ed8e1d0

Browse files
dptootgajus
authored andcommittedDec 8, 2017
feat: using writeIndex programatically was not respecting passed options configuration (#41)
* Create .gitattributes * pass full options object to createIndexCode in writeIndex
1 parent bf45925 commit ed8e1d0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text eol=lf

‎src/utilities/writeIndex.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default (directoryPaths, options = {}) => {
1717
const config = readIndexConfig(directoryPath);
1818
const optionsWithConfig = Object.assign({}, options, {config});
1919
const siblings = readDirectory(directoryPath, optionsWithConfig);
20-
const indexCode = createIndexCode(siblings, {config});
20+
const indexCode = createIndexCode(siblings, optionsWithConfig);
2121
const indexFilePath = path.resolve(directoryPath, 'index.js');
2222

2323
fs.writeFileSync(indexFilePath, indexCode);

0 commit comments

Comments
 (0)
Please sign in to comment.