chore: build runtime artifacts in conductor setup

This commit is contained in:
Andrey Avtomonov 2026-05-14 23:08:33 +02:00
parent 6c73029d0c
commit 13ebe4fb6f
2 changed files with 4 additions and 0 deletions

View file

@ -28,6 +28,7 @@ describe('Conductor workspace scripts', () => {
assert.match(setupScript, /pnpm install --frozen-lockfile --prefer-offline/);
assert.match(setupScript, /pnpm run native:rebuild/);
assert.match(setupScript, /pnpm run build/);
assert.match(setupScript, /pnpm run artifacts:build/);
assert.match(setupScript, /packages\/cli\/dist\/bin\.js status --no-input/);
assert.doesNotMatch(setupScript, /scripts\/conductor\//);
});

View file

@ -136,6 +136,9 @@ pnpm run native:rebuild
echo "Building KTX packages..."
pnpm run build
echo "Building KTX runtime artifacts..."
pnpm run artifacts:build
echo "Running KTX setup doctor..."
node packages/cli/dist/bin.js status --no-input