-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.js
82 lines (77 loc) · 2.03 KB
/
build.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const { exec } = require('child_process');
const path = require('path');
const fs = require('fs');
const glob = require('glob');
const pkg = require('./package.json');
const vueCliService = path.join(__dirname, 'node_modules', '.bin', 'vue-cli-service');
const libName = pkg.libname;
const runBuild = (name, dest, entry) => new Promise((resolve, reject) => {
const execArgs = [
'build',
'--mode',
'production',
'--target',
'lib',
'--name',
name,
'--dest',
dest,
entry,
];
exec(`${vueCliService} ${execArgs.join(' ')}`, (err, stdout) => {
if (err) {
reject(err);
} else {
process.stdout.write(stdout);
resolve();
}
});
});
async function build() {
// build main
await runBuild(
libName,
path.join(__dirname, 'dist'),
path.join(__dirname, 'src', 'components', 'entry.js')
);
// rename main lib
fs.rename(
path.join(__dirname, 'dist', `${libName}.common.js`),
path.join(__dirname, 'dist', 'index.js'),
(err) => {
if (err) {
console.error(err);
} else {
console.log(` Renamed ${libName}.common.js to index.js`);
}
}
);
// build individual components
glob(
`${path.join(__dirname, 'src', 'components')}/*.vue`, null,
(er, files) => {
files.forEach(async (file) => {
const componentName = path.basename(file, '.vue');
const componentLibName = `${libName}${componentName}`;
await runBuild(
componentLibName,
path.join(__dirname, 'dist', componentLibName),
file
);
// rename component
fs.rename(
path.join(__dirname, 'dist', componentLibName, `${componentLibName}.common.js`),
path.join(__dirname, 'dist', componentLibName, 'index.js'),
(err) => {
if (err) {
console.error(err);
} else {
console.log(` Renamed ${componentLibName}.common.js to index.js`);
}
}
);
});
}
);
}
build().catch(console.error);