Skip to content

Commit c83f633

Browse files
authored
fix: update github workflows and urls to use rstackjs organization (#73)
Update all references from rspack-contrib to rstackjs in CI workflows, package.json files, and documentation.
1 parent 5dfd6e0 commit c83f633

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
build:
5151
name: Build
52-
uses: rspack-contrib/rspack-toolchain/.github/workflows/build.yml@v1
52+
uses: rstackjs/rspack-toolchain/.github/workflows/build.yml@v1
5353

5454
test:
5555
name: Test

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
jobs:
2626
build:
2727
name: Build
28-
uses: rspack-contrib/rspack-toolchain/.github/workflows/build.yml@v1
28+
uses: rstackjs/rspack-toolchain/.github/workflows/build.yml@v1
2929
with:
3030
napi-build-command: pnpm build --release
3131

@@ -89,10 +89,10 @@ jobs:
8989

9090
- name: Get NAPI info
9191
id: napi-info
92-
uses: rspack-contrib/rspack-toolchain/get-napi-info@v1
92+
uses: rstackjs/rspack-toolchain/get-napi-info@v1
9393

9494
- name: Download rspack binding
95-
uses: rspack-contrib/rspack-toolchain/download-rspack-binding@v1
95+
uses: rstackjs/rspack-toolchain/download-rspack-binding@v1
9696
with:
9797
path: ${{ steps.napi-info.outputs.binding-directory }}/artifacts
9898

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626

2727
- name: Get NAPI info
2828
id: napi-info
29-
uses: rspack-contrib/rspack-toolchain/get-napi-info@v1
29+
uses: rstackjs/rspack-toolchain/get-napi-info@v1
3030

3131
- name: Download rspack binding
32-
uses: rspack-contrib/rspack-toolchain/download-rspack-binding@v1
32+
uses: rstackjs/rspack-toolchain/download-rspack-binding@v1
3333
with:
3434
target: ${{ matrix.target }}
3535
path: ${{ steps.napi-info.outputs.binding-directory }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
## Quick Start
1313

14-
📖 **[Create custom binding](https://rspack-contrib.github.io/rspack-rust-book/custom-binding/getting-started/index.html)**
14+
📖 **[Create custom binding](https://rstackjs.github.io/rspack-rust-book/custom-binding/getting-started/index.html)**
1515

1616
## Why?
1717

@@ -21,7 +21,7 @@ _Rspack Custom Binding_ allows you to extend Rspack directly with native Rust co
2121

2222
With custom binding, you can still use the familiar JavaScript API (`@rspack/core`), but your custom logic runs natively, combining the best of both worlds.
2323

24-
Check out [rationale](https://rspack-contrib.github.io/rspack-rust-book/custom-binding/getting-started/rationale.html) for more details.
24+
Check out [rationale](https://rstackjs.github.io/rspack-rust-book/custom-binding/getting-started/rationale.html) for more details.
2525

2626
## Supported Platforms
2727

@@ -42,4 +42,4 @@ Check out [rationale](https://rspack-contrib.github.io/rspack-rust-book/custom-b
4242

4343
> **Note:** Node.js support requires >= 18.
4444
>
45-
> Multi-platform publishing and CI support is powered by [rspack-toolchain](https://github.com/rspack-contrib/rspack-toolchain). For the latest supported platforms, see the [official supported targets list](https://github.com/rspack-contrib/rspack-toolchain/tree/main?tab=readme-ov-file#supported-targets).
45+
> Multi-platform publishing and CI support is powered by [rspack-toolchain](https://github.com/rstackjs/rspack-toolchain). For the latest supported platforms, see the [official supported targets list](https://github.com/rstackjs/rspack-toolchain/tree/main?tab=readme-ov-file#supported-targets).

crates/binding/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@rspack-template/binding",
33
"version": "0.0.3",
4-
"homepage": "https://github.com/rspack-contrib/rspack-binding-template",
4+
"homepage": "https://github.com/rstackjs/rspack-binding-template",
55
"bugs": {
6-
"url": "https://github.com/rspack-contrib/rspack-binding-template/issues"
6+
"url": "https://github.com/rstackjs/rspack-binding-template/issues"
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/rspack-contrib/rspack-binding-template.git",
10+
"url": "git+https://github.com/rstackjs/rspack-binding-template.git",
1111
"directory": "crates/binding"
1212
},
1313
"main": "index.js",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@rspack-template/core",
33
"version": "0.0.3",
4-
"homepage": "https://github.com/rspack-contrib/rspack-binding-template",
4+
"homepage": "https://github.com/rstackjs/rspack-binding-template",
55
"bugs": {
6-
"url": "https://github.com/rspack-contrib/rspack-binding-template/issues"
6+
"url": "https://github.com/rstackjs/rspack-binding-template/issues"
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/rspack-contrib/rspack-binding-template.git"
10+
"url": "git+https://github.com/rstackjs/rspack-binding-template.git"
1111
},
1212
"packageManager": "pnpm@10.20.0",
1313
"main": "lib/index.js",

0 commit comments

Comments
 (0)