Skip to content

Commit 09b426b

Browse files
committed
Merge remote-tracking branch 'upstream/main' into chore/merge_upstream
2 parents c44b6dc + a214a80 commit 09b426b

33 files changed

+388
-323
lines changed

.github/workflows/release-napi.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,14 @@ jobs:
8282
- os: ubuntu-latest
8383
target: powerpc64le-unknown-linux-gnu
8484
build: pnpm build --use-napi-cross
85+
- os: ubuntu-latest
86+
target: riscv64gc-unknown-linux-gnu
87+
build: |
88+
sudo apt-get update &&
89+
sudo apt-get install gcc-riscv64-linux-gnu g++-riscv64-linux-gnu -y &&
90+
export CC=riscv64-linux-gnu-gcc &&
91+
export CXX=riscv64-linux-gnu-g++ &&
92+
pnpm build
8593
- os: ubuntu-latest
8694
target: s390x-unknown-linux-gnu
8795
build: export CFLAGS="-fuse-ld=lld" && pnpm build --use-napi-cross
@@ -126,11 +134,11 @@ jobs:
126134
- name: Upload artifacts
127135
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
128136
with:
137+
if-no-files-found: error
129138
name: bindings-${{ matrix.target }}
130139
path: |
131140
napi/*.node
132141
napi/*.wasm
133-
if-no-files-found: error
134142
135143
build-freebsd:
136144
needs: check

.github/workflows/release-plz.yml

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

2929
- name: Run release-plz
3030
id: release-plz
31-
uses: MarcoIeni/release-plz-action@245a2a85f1ebdb6a7dd33c813443793e33f08544 # v0.5
31+
uses: MarcoIeni/release-plz-action@245a2a85f1ebdb6a7dd33c813443793e33f08544 # v0.5.103
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
3434
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.lock

Lines changed: 59 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "2"
55
[package]
66
name = "unrs_resolver"
77
version = "1.4.1"
8-
authors = ["UnRS"]
8+
authors = ["JounQin <[email protected]> (https://www.1stG.me)"]
99
categories = ["development-tools"]
1010
edition = "2024"
1111
homepage = "https://github.com/unrs/unrs-resolver"

fixtures/pnp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pnp",
3-
"packageManager": "yarn@4.8.1",
3+
"packageManager": "yarn@4.9.1",
44
"dependencies": {
55
"beachball": "^2.52.0",
66
"is-even": "^1.0.0",

fixtures/pnpm-workspace/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"license": "MIT",
99
"dependencies": {
1010
"enhanced-resolve": "^5.18.1",
11-
"oxc-resolver": "^5.0.0"
11+
"unrs-resolver": "workspace:*"
1212
}
1313
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"compilerOptions": {
3-
"paths": {
4-
"@/*": ["./*"]
5-
}
6-
}
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./*"]
5+
}
6+
}
77
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
4-
"baseUrl": "src",
5-
},
4+
"baseUrl": "src"
5+
}
66
}

fixtures/tsconfig/cases/paths_template_variable/tsconfig2.json renamed to fixtures/tsconfig/cases/paths_template_variable/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"composite": true,
44
"paths": {
5-
"foo": ["${configDir}/foo.js"]
5+
"foo": ["${configDir}/src/foo.js"]
66
}
77
}
88
}

0 commit comments

Comments
 (0)