mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-02 13:06:08 +00:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
const { execSync } = require("child_process");
|
|
|
|
try {
|
|
execSync('tsc');
|
|
console.log('Builded');
|
|
} catch (e) {
|
|
console.error(e);
|
|
console.log('Builded with errors');
|
|
}
|