mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 20:08:37 +00: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, '..'),
|
|
});
|
|
}
|