-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(generateindex file): generate index file for all the component
- Loading branch information
Showing
4 changed files
with
202 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
node_modules/ | ||
|
||
__build/ | ||
__build/ | ||
|
||
**/index.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* eslint-disable no-console */ | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { mkdirp } = require('mkdirp'); | ||
|
||
const ignoreFiles = [ | ||
'.DS_Store', | ||
'scripts', | ||
'utils', | ||
'WIP-', | ||
]; | ||
|
||
function getRandomInt(max) { | ||
return Math.floor(Math.random() * max); | ||
} | ||
|
||
const color = [ | ||
{ name: 'FgRed', value: '\x1b[31m%s\x1b[0m' }, | ||
{ name: 'FgGreen', value: '\x1b[32m%s\x1b[0m' }, | ||
{ name: 'FgYellow', value: '\x1b[33m%s\x1b[0m' }, | ||
{ name: 'FgMagenta', value: '\x1b[35m%s\x1b[0m' }, | ||
{ name: 'FgCyan', value: '\x1b[36m%s\x1b[0m' }, | ||
]; | ||
|
||
// generate exports for all platforms | ||
const srcPath = path.resolve(__dirname, '../component'); | ||
const components = fs.readdirSync(srcPath).filter((files) => !ignoreFiles.includes(files) && !files.includes('WIP-')); | ||
let count = 0; | ||
|
||
components.forEach((component) => { | ||
const componentDir = path.resolve(`${__dirname}`, `../../${component}`); | ||
mkdirp(componentDir).then(() => { | ||
const componentFile = path.resolve(componentDir, 'index.js'); | ||
// const componentContent = `export { default } from '../__build/${component}';\nexport * from '../__build/${component}';\n`; | ||
const componentContent = `import ${component} from '../__build/${component}/${component}';\nexport default ${component};\n`; | ||
fs.writeFile(componentFile, componentContent, (writeFileErr) => { | ||
if (writeFileErr) throw writeFileErr; | ||
console.log(color[getRandomInt(color.length)].value, ` ${count + 3}. generated: ${componentFile} \n`); | ||
count += 1; | ||
if (count === components.length) { | ||
console.log(color[0].value, ` ${count + 3}. Generated: Package index files for package for direct import \n`); | ||
console.log('\x1b[44m%s\x1b[0m', ` ${count + 4}. Final: Setup Completed Successfully`); | ||
console.log(''); | ||
} | ||
}); | ||
}); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters