mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-12 06:43:24 +03:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { execSync } from 'node:child_process';
|
|
import { join } from 'node:path';
|
|
|
|
export default async function () {
|
|
execSync('yarn ts-node-esm scripts/', {
|
|
cwd: join(__dirname, '..'),
|
|
});
|
|
}
|