mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
24 lines
483 B
JavaScript
24 lines
483 B
JavaScript
|
import { execa } from 'execa';
|
||
|
|
||
|
(async () => {
|
||
|
// なぜかchokidarが動かない影響で、watchされない
|
||
|
/*
|
||
|
execa('tsc-alias', ['-w', '-p', 'tsconfig.json'], {
|
||
|
stdout: process.stdout,
|
||
|
stderr: process.stderr,
|
||
|
});
|
||
|
*/
|
||
|
|
||
|
setInterval(() => {
|
||
|
execa('tsc-alias', ['-p', 'tsconfig.json'], {
|
||
|
stdout: process.stdout,
|
||
|
stderr: process.stderr,
|
||
|
});
|
||
|
}, 3000);
|
||
|
|
||
|
execa('tsc', ['-w', '-p', 'tsconfig.json'], {
|
||
|
stdout: process.stdout,
|
||
|
stderr: process.stderr,
|
||
|
});
|
||
|
})();
|