-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.js
37 lines (33 loc) · 1.33 KB
/
package.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
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const fs = require('fs');
const yargs = require('yargs').argv;
const ora = require('ora');
const rimraf = require('rimraf');
require('colors');
const isVerbose = yargs.verbose === 'true' || yargs.verbose === true;
const TO_PRESERVE_DURING_CLEAN_UP = ['package.json', '.git', '.gitignore', 'node_modules', 'LICENSE.md',"index.d.ts", "index.d.ts.map", "svg.d.ts"];
const run = async () => {
const srcPath = __dirname + '/src';
const srcFiles = fs.readdirSync(srcPath);
const buildingPackageSpinner = ora(`Building fresh package...`).start();
try {
await exec('npm run package');
} catch (error) {
buildingPackageSpinner.fail('Package build failed.');
if (isVerbose) {
console.error(error);
}
process.exit(-1);
}
buildingPackageSpinner.succeed('Package built.');
const postBuildCleanUpSpinner = ora('Doing post-build clean-up...').start();
const rootNewFiles = fs.readdirSync(__dirname);
rootNewFiles
.filter(name => !srcFiles.includes(name) && !TO_PRESERVE_DURING_CLEAN_UP.includes(name))
.forEach(fileName => {
rimraf.sync(__dirname + `/${fileName}`, {}, () => {});
});
postBuildCleanUpSpinner.succeed('Did post-build clean up.');
};
run();