mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 22:39:34 +08:00
222811d582
* chore: add gitignore * chore: clean all * chore: clean all * chore: clean all * chore: keep style * chore: modify script * chore: fix tsc
13 lines
315 B
JavaScript
13 lines
315 B
JavaScript
const fs = require('fs-extra');
|
|
const path = require('path');
|
|
|
|
const { version } = require('../package.json');
|
|
|
|
fs.ensureDirSync(path.join(__dirname, '..', 'components', 'version'));
|
|
|
|
fs.writeFileSync(
|
|
path.join(__dirname, '..', 'components', 'version', 'index.ts'),
|
|
`export default '${version}'`,
|
|
'utf8',
|
|
);
|