diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-09-23 18:49:47 +0200 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-09-23 18:49:47 +0200 |
| commit | 2375d043d16ddd099efdc9a56c075cb9ea580b66 (patch) | |
| tree | 5000e9ee118497429a664198137a438270c415da /scripts/dev.mjs | |
| parent | shonk (diff) | |
| download | sharkey-2375d043d16ddd099efdc9a56c075cb9ea580b66.tar.gz sharkey-2375d043d16ddd099efdc9a56c075cb9ea580b66.tar.bz2 sharkey-2375d043d16ddd099efdc9a56c075cb9ea580b66.zip | |
add: Megalodon, initial mastodon api
Diffstat (limited to 'scripts/dev.mjs')
| -rw-r--r-- | scripts/dev.mjs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/dev.mjs b/scripts/dev.mjs index cf27517a3d..3fccfbc936 100644 --- a/scripts/dev.mjs +++ b/scripts/dev.mjs @@ -35,6 +35,12 @@ await execa('pnpm', ['--filter', 'misskey-js', 'build'], { stderr: process.stderr, }); +await execa("pnpm", ['--filter', 'megalodon', 'build'], { + cwd: _dirname + '/../', + stdout: process.stdout, + stderr: process.stderr, +}); + execa('pnpm', ['build-assets', '--watch'], { cwd: _dirname + '/../', stdout: process.stdout, |