-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreateDistCss.js
53 lines (50 loc) · 1.6 KB
/
createDistCss.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const fs = require('fs');
const path = require('path');
const packageJson = require(path.join(process.cwd(), 'package.json'));
const arrTemp = packageJson.name.split('/');
const packageName = arrTemp.length > 1 ? arrTemp[1] : arrTemp[0];
function finalizeCompile() {
if (fs.existsSync(path.join(process.cwd(), './lib'))) {
const componentsPath = path.join(process.cwd(), 'src');
let componentsLessContent = '';
fs.readdir(componentsPath, (err, files) => {
if (err) throw new Error(err);
files.forEach((file) => {
if (
fs.existsSync(path.join(componentsPath, file, 'style', 'index.less'))
) {
componentsLessContent += `@import "../${path.join(
file,
'style',
'index.less',
)}";\n`.replace(/\\/g, '/');
}
});
fs.writeFileSync(
path.join(process.cwd(), 'lib', 'style', 'components.less'),
componentsLessContent,
);
});
}
}
function finalizeDist() {
if (fs.existsSync(path.join(process.cwd(), './dist'))) {
fs.writeFileSync(
path.join(process.cwd(), 'dist', `${packageName}.less`),
'@import "../lib/style/index.less";\n@import "../lib/style/components.less";',
);
console.log(`Built a entry less file to dist/${packageName}.less`);
}
}
function finalizeCss() {
if (fs.existsSync(path.join(process.cwd(), './dist'))) {
fs.writeFileSync(
path.join(process.cwd(), 'dist', 'css.js'),
`import "./${packageName}.less";`,
);
console.log('Built a entry js file to dist/css.js');
}
}
finalizeCompile();
finalizeDist();
finalizeCss();