diff --git a/package.json b/package.json index d57d278c1..1df2a826e 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "starlight-links-validator": "^0.19.0" }, "minimumReleaseAge": 4320, - "packageManager": "pnpm@10.17.1", + "packageManager": "pnpm@10.18.3", "engines": { "pnpm": "^10.16.0" } diff --git a/packages/fetch-sponsors/package.json b/packages/fetch-sponsors/package.json index cb5fb935b..7057c6e4f 100644 --- a/packages/fetch-sponsors/package.json +++ b/packages/fetch-sponsors/package.json @@ -11,7 +11,7 @@ }, "keywords": [], "author": "", - "packageManager": "pnpm@10.17.1", + "packageManager": "pnpm@10.18.3", "dependencies": { "@octokit/core": "^7.0.3", "@octokit/plugin-paginate-graphql": "^6.0.0", diff --git a/src/content/docs/develop/Tests/WebDriver/Example/webdriverio.mdx b/src/content/docs/develop/Tests/WebDriver/Example/webdriverio.mdx index 8c49a4d36..34d99595b 100644 --- a/src/content/docs/develop/Tests/WebDriver/Example/webdriverio.mdx +++ b/src/content/docs/develop/Tests/WebDriver/Example/webdriverio.mdx @@ -112,7 +112,8 @@ export const config = { // ensure the rust project is built since we expect this binary to exist for the webdriver sessions onPrepare: () => { - spawnSync('yarn', ['tauri', 'build', '--debug', '--no-bundle'], { + // Remove the extra `--` if you're not using npm! + spawnSync('npm', ['run', 'tauri', 'build', '--', '--debug', '--no-bundle'], { cwd: path.resolve(__dirname, '..'), stdio: 'inherit', shell: true,