Skip to content

Commit b3e92b6

Browse files
Merge remote-tracking branch 'origin/main' into codex/rstack-mcp-observability
# Conflicts: # pnpm-lock.yaml # website/docs/zh/guide/configuration.mdx
2 parents 82cfda3 + 9129fe0 commit b3e92b6

39 files changed

Lines changed: 339 additions & 292 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,10 @@ jobs:
6969
run: git diff --exit-code -- packages/rstack/binding.cjs packages/rstack/binding.d.cts
7070

7171
- name: Run Test
72-
if: steps.changes.outputs.changed == 'true'
72+
if: steps.changes.outputs.changed == 'true' && runner.os != 'Windows'
7373
run: node --run test
74+
75+
# Run package tests serially on Windows to avoid resource contention between nested test workers.
76+
- name: Run Test (Windows)
77+
if: steps.changes.outputs.changed == 'true' && runner.os == 'Windows'
78+
run: pnpm --workspace-concurrency=1 --filter "./packages/**" test

packages/create-rstack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ npx create-rstack --dir my-project --template app-vanilla-ts --no-git
5353

5454
## Documentation
5555

56-
See the [Rstack documentation](https://rstack.rs).
56+
See the [Rstack CLI documentation](https://rstack.rs).
5757

5858
## License
5959

packages/create-rstack/template-common/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Install the dependencies:
2121

2222
## Learn more
2323

24-
- [Rstack documentation](https://rstack.rs)
25-
- [Rstack GitHub repository](https://github.com/rstackjs/rstack-cli)
24+
- [Rstack CLI documentation](https://rstack.rs)
25+
- [Rstack CLI GitHub repository](https://github.com/rstackjs/rstack-cli)

packages/create-rstack/template-doc-i18n/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ Install the dependencies:
1919

2020
## Learn more
2121

22-
- [Rstack documentation](https://rstack.rs)
22+
- [Rstack CLI documentation](https://rstack.rs)
2323
- [Rspress documentation](https://rspress.rs)

packages/create-rstack/template-doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ Install the dependencies:
1919

2020
## Learn more
2121

22-
- [Rstack documentation](https://rstack.rs)
22+
- [Rstack CLI documentation](https://rstack.rs)
2323
- [Rspress documentation](https://rspress.rs)

packages/create-rstack/template-lib-node-ts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Install the dependencies:
2020

2121
## Learn more
2222

23-
- [Rstack documentation](https://rstack.rs)
23+
- [Rstack CLI documentation](https://rstack.rs)
2424
- [Rslib documentation](https://rslib.rs)

packages/create-rstack/template-lib-node/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Install the dependencies:
2020

2121
## Learn more
2222

23-
- [Rstack documentation](https://rstack.rs)
23+
- [Rstack CLI documentation](https://rstack.rs)
2424
- [Rslib documentation](https://rslib.rs)

packages/create-rstack/template-lib-react-ts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Install the dependencies:
2020

2121
## Learn more
2222

23-
- [Rstack documentation](https://rstack.rs)
23+
- [Rstack CLI documentation](https://rstack.rs)
2424
- [Rslib documentation](https://rslib.rs)

packages/create-rstack/template-lib-react/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Install the dependencies:
2020

2121
## Learn more
2222

23-
- [Rstack documentation](https://rstack.rs)
23+
- [Rstack CLI documentation](https://rstack.rs)
2424
- [Rslib documentation](https://rslib.rs)

packages/create-rstack/template-lib-solid-ts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Install the dependencies:
2020

2121
## Learn more
2222

23-
- [Rstack documentation](https://rstack.rs)
23+
- [Rstack CLI documentation](https://rstack.rs)
2424
- [Rslib documentation](https://rslib.rs)

0 commit comments

Comments
 (0)