-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
30 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
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,46 +1,46 @@ | ||
/* eslint-disable no-console */ | ||
const fs = require("fs") | ||
const path = require("path") | ||
const { mkdirp } = require("mkdirp") | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { mkdirp } = require('mkdirp'); | ||
|
||
const ignoreFiles = [ | ||
".DS_Store", | ||
"scripts", | ||
"utils", | ||
"WIP-" | ||
] | ||
'.DS_Store', | ||
'scripts', | ||
'utils', | ||
'WIP-', | ||
]; | ||
|
||
function getRandomInt(max) { | ||
return Math.floor(Math.random() * 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" } | ||
] | ||
{ 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 | ||
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}`) | ||
const componentDir = path.resolve(`${__dirname}`, `../../${component}`); | ||
mkdirp(componentDir).then(() => { | ||
const componentFile = path.resolve(componentDir, "index.js") | ||
const componentContent = `export { default } from '../__build-es/${component}';\nexport * from '../__build-es/${component}';\n` | ||
const componentFile = path.resolve(componentDir, 'index.js'); | ||
const componentContent = `export { default } from '../__build-es/${component}';\nexport * from '../__build-es/${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 (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("") | ||
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(''); | ||
} | ||
}) | ||
}) | ||
}) | ||
}); | ||
}); | ||
}); |
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