We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f4f2a6 commit ff81212Copy full SHA for ff81212
scripts/syncStyleFromAntd.js
@@ -30,6 +30,7 @@ async function syncFiles(data = []) {
30
if (!fs.existsSync(toPath)) {
31
fse.ensureDirSync(toPath);
32
}
33
+ // eslint-disable-next-line no-console
34
console.log('update style: ', path.join(toPath, itemData.name.replace('.tsx', '.js')));
35
const content = Base64.decode(itemData.content);
36
fs.writeFileSync(path.join(toPath, itemData.name.replace('.tsx', '.js')), content);
0 commit comments