ant-design/scripts/prepub.js

59 lines
2.0 KiB
JavaScript
Raw Normal View History

2016-04-28 11:46:11 +08:00
#!/usr/bin/env node
const fs = require('fs');
const path = require('path');
const packageInfo = require('../package.json');
if (fs.existsSync(path.join(__dirname, '../lib'))) {
// Build package.json version to lib/version/index.js
// prevent json-loader needing in user-side
const versionFilePath = path.join(process.cwd(), 'lib', 'version', 'index.js');
const versionFileContent = fs.readFileSync(versionFilePath).toString();
fs.writeFileSync(
versionFilePath,
2018-12-07 20:02:01 +08:00
versionFileContent.replace(
"require('../../package.json')",
`{ version: '${packageInfo.version}' }`,
),
);
2018-11-28 12:39:10 +08:00
// eslint-disable-next-line
2017-02-24 17:36:16 +08:00
console.log('Wrote version into lib/version/index.js');
// Build package.json version to lib/version/index.d.ts
// prevent https://github.com/ant-design/ant-design/issues/4935
const versionDefPath = path.join(process.cwd(), 'lib', 'version', 'index.d.ts');
fs.writeFileSync(
versionDefPath,
2018-12-07 20:02:01 +08:00
`declare var _default: "${packageInfo.version}";\nexport default _default;\n`,
);
2018-11-28 12:39:10 +08:00
// eslint-disable-next-line
2017-02-24 17:36:16 +08:00
console.log('Wrote version into lib/version/index.d.ts');
}
2016-05-17 16:08:45 +08:00
if (fs.existsSync(path.join(__dirname, '../dist'))) {
// Build a entry less file to dist/antd.less
const componentsPath = path.join(process.cwd(), 'components');
let componentsLessContent = '';
2016-10-30 21:00:33 +08:00
// Build components in one file: lib/style/components.less
2018-11-28 12:39:10 +08:00
fs.readdir(componentsPath, (err, files) => {
2018-12-07 20:02:01 +08:00
files.forEach(file => {
2016-05-17 16:08:45 +08:00
if (fs.existsSync(path.join(componentsPath, file, 'style', 'index.less'))) {
2018-11-28 12:39:10 +08:00
componentsLessContent += `@import "../${path.join(file, 'style', 'index.less')}";\n`;
2016-05-17 16:08:45 +08:00
}
});
2018-12-07 20:02:01 +08:00
fs.writeFileSync(
path.join(process.cwd(), 'lib', 'style', 'components.less'),
componentsLessContent,
);
2016-04-29 15:31:07 +08:00
2016-05-17 16:08:45 +08:00
// Build less entry file: dist/antd.less
fs.writeFileSync(
path.join(process.cwd(), 'dist', 'antd.less'),
2018-12-07 20:02:01 +08:00
'@import "../lib/style/index.less";\n@import "../lib/style/components.less";',
2016-05-17 16:08:45 +08:00
);
});
2018-11-28 12:39:10 +08:00
// eslint-disable-next-line
2017-02-24 17:36:16 +08:00
console.log('Built a entry less file to dist/antd.less');
2016-05-17 16:08:45 +08:00
}