mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
chore: insert statistic into es (#35824)
This commit is contained in:
parent
9b95a30ec9
commit
4f6ebc944c
@ -52,5 +52,11 @@ ReactDOMServer.renderToString(React.createElement(Notification));
|
||||
const libContent = await fs.readFile(libPath, 'utf8');
|
||||
const newLibContent = `${libContent}\nexports._statistic_build_ = ${JSON.stringify(statistic)}`;
|
||||
await fs.writeFile(libPath, newLibContent, 'utf8');
|
||||
|
||||
const esPath = `${process.cwd()}/es/_util/theme/util/statistic.js`;
|
||||
const esContent = await fs.readFile(esPath, 'utf8');
|
||||
const newEsContent = `${esContent}\nexport var _statistic_build_ = ${JSON.stringify(statistic)}`;
|
||||
await fs.writeFile(esPath, newEsContent, 'utf8');
|
||||
|
||||
console.log(chalk.green(`✅ Collecting token statistics done.`));
|
||||
})();
|
||||
|
Loading…
Reference in New Issue
Block a user