forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.js
More file actions
22 lines (17 loc) · 662 Bytes
/
build.js
File metadata and controls
22 lines (17 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const fsx = require('fs-extra');
const child_process = require('child_process');
const path = require('path');
const process = require('process');
function executeCommand(command) {
console.log('---> ' + command);
child_process.execSync(command, { stdio: 'inherit' });
}
// Clean the old build outputs
console.log(`==> Starting build.js for ${path.basename(process.cwd())}`);
fsx.emptyDirSync('dist');
fsx.emptyDirSync('lib');
fsx.emptyDirSync('temp');
// Run the TypeScript compiler
executeCommand('node node_modules/typescript/lib/tsc');
// (NO API EXTRACTOR FOR THIS PROJECT)
console.log(`==> Finished build.js for ${path.basename(process.cwd())}`);