chore(deps): refresh workspace dependencies (#43)

* chore(deps): refresh workspace dependencies

* Fix pnpm artifact smoke build approvals
This commit is contained in:
Andrey Avtomonov 2026-05-13 01:15:35 +02:00 committed by GitHub
parent 17a2fee69a
commit 85fc408054
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 1274 additions and 1153 deletions

View file

@ -9,6 +9,7 @@ import {
PUBLIC_NPM_PACKAGE_NAME,
PUBLIC_NPM_PACKAGE_VERSION,
} from './build-public-npm-package.mjs';
import { npmSmokePnpmWorkspaceYaml } from './package-artifacts.mjs';
const execFileAsync = promisify(execFile);
const SCRIPT_DIR = dirname(fileURLToPath(import.meta.url));
@ -249,6 +250,7 @@ async function writeSmokePackage(projectDir, tarballPath) {
2,
)}\n`,
);
await writeFile(join(projectDir, 'pnpm-workspace.yaml'), npmSmokePnpmWorkspaceYaml());
}
export async function runLocalEmbeddingsRuntimeSmoke(options = {}) {