Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

build:
name: Build
uses: rspack-contrib/rspack-toolchain/.github/workflows/build.yml@v1
uses: rstackjs/rspack-toolchain/.github/workflows/build.yml@v1

test:
name: Test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
build:
name: Build
uses: rspack-contrib/rspack-toolchain/.github/workflows/build.yml@v1
uses: rstackjs/rspack-toolchain/.github/workflows/build.yml@v1
with:
napi-build-command: pnpm build --release

Expand Down Expand Up @@ -89,10 +89,10 @@ jobs:

- name: Get NAPI info
id: napi-info
uses: rspack-contrib/rspack-toolchain/get-napi-info@v1
uses: rstackjs/rspack-toolchain/get-napi-info@v1

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:

- name: Get NAPI info
id: napi-info
uses: rspack-contrib/rspack-toolchain/get-napi-info@v1
uses: rstackjs/rspack-toolchain/get-napi-info@v1

- name: Download rspack binding
uses: rspack-contrib/rspack-toolchain/download-rspack-binding@v1
uses: rstackjs/rspack-toolchain/download-rspack-binding@v1
with:
target: ${{ matrix.target }}
path: ${{ steps.napi-info.outputs.binding-directory }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

## Quick Start

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

## Why?

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

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.

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

## Supported Platforms

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

> **Note:** Node.js support requires >= 18.
>
> 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).
> 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).
6 changes: 3 additions & 3 deletions crates/binding/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@rspack-template/binding",
"version": "0.0.3",
"homepage": "https://github.com/rspack-contrib/rspack-binding-template",
"homepage": "https://github.com/rstackjs/rspack-binding-template",
"bugs": {
"url": "https://github.com/rspack-contrib/rspack-binding-template/issues"
"url": "https://github.com/rstackjs/rspack-binding-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rspack-contrib/rspack-binding-template.git",
"url": "git+https://github.com/rstackjs/rspack-binding-template.git",
"directory": "crates/binding"
},
"main": "index.js",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@rspack-template/core",
"version": "0.0.3",
"homepage": "https://github.com/rspack-contrib/rspack-binding-template",
"homepage": "https://github.com/rstackjs/rspack-binding-template",
"bugs": {
"url": "https://github.com/rspack-contrib/rspack-binding-template/issues"
"url": "https://github.com/rstackjs/rspack-binding-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rspack-contrib/rspack-binding-template.git"
"url": "git+https://github.com/rstackjs/rspack-binding-template.git"
},
"packageManager": "pnpm@10.20.0",
"main": "lib/index.js",
Expand Down
Loading