mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-29 01:17:39 +03:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
|
import { execSync } from 'node:child_process';
|
||
|
|
||
|
export default async function () {
|
||
|
execSync('yarn ts-node-esm scripts/', {
|
||
|
cwd: path.join(__dirname, '..'),
|
||
|
});
|
||
|
}
|