Skip to content

Commit bac8312

Browse files
authored
Merge branch 'v2' into renovate/astro-and-starlight-packages
2 parents 02574fc + bfccceb commit bac8312

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"starlight-links-validator": "^0.19.0"
4747
},
4848
"minimumReleaseAge": 4320,
49-
"packageManager": "pnpm@10.17.1",
49+
"packageManager": "pnpm@10.18.3",
5050
"engines": {
5151
"pnpm": "^10.16.0"
5252
}

packages/fetch-sponsors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"keywords": [],
1313
"author": "",
14-
"packageManager": "pnpm@10.17.1",
14+
"packageManager": "pnpm@10.18.3",
1515
"dependencies": {
1616
"@octokit/core": "^7.0.3",
1717
"@octokit/plugin-paginate-graphql": "^6.0.0",

src/content/docs/develop/Tests/WebDriver/Example/webdriverio.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ export const config = {
112112

113113
// ensure the rust project is built since we expect this binary to exist for the webdriver sessions
114114
onPrepare: () => {
115-
spawnSync('yarn', ['tauri', 'build', '--debug', '--no-bundle'], {
115+
// Remove the extra `--` if you're not using npm!
116+
spawnSync('npm', ['run', 'tauri', 'build', '--', '--debug', '--no-bundle'], {
116117
cwd: path.resolve(__dirname, '..'),
117118
stdio: 'inherit',
118119
shell: true,

0 commit comments

Comments
 (0)