Skip to content

Commit 8966cda

Browse files
chore(deps-dev): Bump oxfmt from 0.60.0 to 0.63.0 (#23466)
Bumps [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) from 0.60.0 to 0.63.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/oxc-project/oxc/commit/c42d6397eab5b2d5bb2bd6746c57bc2a9cad21bd"><code>c42d639</code></a> release(apps): oxlint v1.78.0 &amp;&amp; oxfmt v0.63.0 (<a href="https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt/issues/25473">#25473</a>)</li> <li><a href="https://github.com/oxc-project/oxc/commit/00f490d7f72d43ec88b1afe28de153e376caf8ed"><code>00f490d</code></a> refactor(oxfmt,formatter): split <code>sortImports</code> validation and use type enum (...</li> <li><a href="https://github.com/oxc-project/oxc/commit/9a423f2f485b79c2353c49442c0c7f60f900261d"><code>9a423f2</code></a> release(apps): oxlint v1.77.0 &amp;&amp; oxfmt v0.62.0 (<a href="https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt/issues/25251">#25251</a>)</li> <li><a href="https://github.com/oxc-project/oxc/commit/e6e584b9bee0f85f45874854c79dbf23ae6e527a"><code>e6e584b</code></a> fix(oxfmt): type jsdoc. enum options (<a href="https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt/issues/25008">#25008</a>)</li> <li><a href="https://github.com/oxc-project/oxc/commit/65fe65d8429e1d1bdf86c517ff08bd119ee87660"><code>65fe65d</code></a> release(apps): oxlint v1.76.0 &amp;&amp; oxfmt v0.61.0 (<a href="https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt/issues/24976">#24976</a>)</li> <li>See full diff in <a href="https://github.com/oxc-project/oxc/commits/oxfmt_v0.63.0/npm/oxfmt">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=oxfmt&package-manager=npm_and_yarn&previous-version=0.60.0&new-version=0.63.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicolas Hrubec <nico.hrubec@sentry.io> Co-authored-by: Nicolas Hrubec <nicolas.hrubec@outlook.com>
1 parent b61dc7b commit 8966cda

3 files changed

Lines changed: 140 additions & 145 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
"nodemon": "^3.1.10",
133133
"npm-run-all2": "^6.2.0",
134134
"nx": "22.7.7",
135-
"oxfmt": "^0.60.0",
135+
"oxfmt": "^0.63.0",
136136
"oxlint": "^1.75.0",
137137
"oxlint-tsgolint": "7",
138138
"rimraf": "^5.0.10",

packages/google-cloud-serverless/src/integrations/google-cloud-grpc.ts

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -96,34 +96,29 @@ export function fillGrpcFunction(stub: Stub, serviceIdentifier: string, methodNa
9696
if (callType != 'unary call') {
9797
return;
9898
}
99-
fill(
100-
stub,
101-
methodName,
102-
(orig: GrpcFunction): GrpcFunction =>
103-
(...args) => {
104-
const ret = orig.apply(stub, args);
105-
if (typeof ret?.on !== 'function' || !SETUP_CLIENTS.has(getClient() as Client)) {
106-
return ret;
107-
}
108-
const span = startInactiveSpan({
109-
name: `${callType} ${methodName}`,
110-
onlyIfParent: true,
111-
attributes: {
112-
[SENTRY_OP]: FAAS_GRPC_SPAN_OP,
113-
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: 'auto.grpc.serverless',
114-
[RPC_SYSTEM_NAME]: 'grpc',
115-
[RPC_SERVICE]: serviceIdentifier,
116-
[RPC_METHOD]: methodName,
117-
},
118-
});
119-
ret.on('status', () => {
120-
if (span) {
121-
span.end();
122-
}
123-
});
124-
return ret;
99+
fill(stub, methodName, (orig: GrpcFunction): GrpcFunction => (...args) => {
100+
const ret = orig.apply(stub, args);
101+
if (typeof ret?.on !== 'function' || !SETUP_CLIENTS.has(getClient() as Client)) {
102+
return ret;
103+
}
104+
const span = startInactiveSpan({
105+
name: `${callType} ${methodName}`,
106+
onlyIfParent: true,
107+
attributes: {
108+
[SENTRY_OP]: FAAS_GRPC_SPAN_OP,
109+
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: 'auto.grpc.serverless',
110+
[RPC_SYSTEM_NAME]: 'grpc',
111+
[RPC_SERVICE]: serviceIdentifier,
112+
[RPC_METHOD]: methodName,
125113
},
126-
);
114+
});
115+
ret.on('status', () => {
116+
if (span) {
117+
span.end();
118+
}
119+
});
120+
return ret;
121+
});
127122
}
128123

129124
/** Identifies service by its address */

yarn.lock

Lines changed: 117 additions & 117 deletions
Original file line numberDiff line numberDiff line change
@@ -6707,100 +6707,100 @@
67076707
resolved "https://registry.yarnpkg.com/@oxc-transform/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.143.0.tgz#610499b65647322b816200864814e414ea5e4fb8"
67086708
integrity sha512-8AaiwIM4M/gEcvXWD71SZDCpY70z7J99G110+fSBws/MHa9PaaWu0IVp5clEG/0alWPQiPZcZRFE3ZIhSd5fng==
67096709

6710-
"@oxfmt/binding-android-arm-eabi@0.60.0":
6711-
version "0.60.0"
6712-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-android-arm-eabi/-/binding-android-arm-eabi-0.60.0.tgz#543243796b831b32ce30ca5c8436b34d156d3613"
6713-
integrity sha512-1q4q4Jc8FlOMVojEisyFAVyl8h1yawNv6phjgmhGVEDeyeOdsSnSr9x0+D4mOnEKvpO5L4mxKZ/DP9X6U3A/Mw==
6714-
6715-
"@oxfmt/binding-android-arm64@0.60.0":
6716-
version "0.60.0"
6717-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-android-arm64/-/binding-android-arm64-0.60.0.tgz#30ca129e7442d66570b7d9446a276bc76b45a698"
6718-
integrity sha512-tD41I6nCt9k8SQXft0CSjjU9jg6SwG7uMu7PxodSEHXl+GDW0868oy6tTtoJkyUze8YKFgTpz/k5LuPUnFiGLw==
6719-
6720-
"@oxfmt/binding-darwin-arm64@0.60.0":
6721-
version "0.60.0"
6722-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-darwin-arm64/-/binding-darwin-arm64-0.60.0.tgz#e34e89af032473e083450f7be629f17b14191049"
6723-
integrity sha512-TTpzPug96Zxdyb46KvTyIUQDdsqbumXh2TKG9C23PCT0kF7JkW56Z/quPuG9rqOFKQIi1gpRNZ7DX18LwxXPnw==
6724-
6725-
"@oxfmt/binding-darwin-x64@0.60.0":
6726-
version "0.60.0"
6727-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-darwin-x64/-/binding-darwin-x64-0.60.0.tgz#206c8ee14ca026a98b8c2feeb643799068069ea1"
6728-
integrity sha512-CnOoWgQ7L+JL/YQaRJ+NyATciSfcftncm7y3kqyte1cGtFEGnStaCd1TAyrinkfQ7nRBfHrTs1/vTwUJr3WF2Q==
6729-
6730-
"@oxfmt/binding-freebsd-x64@0.60.0":
6731-
version "0.60.0"
6732-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-freebsd-x64/-/binding-freebsd-x64-0.60.0.tgz#2cc1eeb6cae5558f77634f2eda20ee7e354aee07"
6733-
integrity sha512-ychJo7S3hZxdO6eDZ9zM6F2lM9fpJS3EKS5CAUSWyprdLYxTu4gbaUKV/VBPTcMJwQa2Bpo+643y3OJ537pihA==
6734-
6735-
"@oxfmt/binding-linux-arm-gnueabihf@0.60.0":
6736-
version "0.60.0"
6737-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.60.0.tgz#a9ecb65861c0c19cce9ec3ccd4cb61e21d00b2e4"
6738-
integrity sha512-36IH5o55T2Fx7E0feDttt+mifxN6yk9pWv4KfhAIsP0dFnUq27331OwbpOsZdoXF9soOLWm7mQUz5+UUmyec4g==
6739-
6740-
"@oxfmt/binding-linux-arm-musleabihf@0.60.0":
6741-
version "0.60.0"
6742-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.60.0.tgz#fcbaad3c838b84734640a865560a2a19ca49fd97"
6743-
integrity sha512-G1Ve7lAa6sFBolVI2LWHfEAqy0YKh4vnioH8uYO9kAEdgM7mR40IksIx9/Zk4+vbYew/sGa4J9Q4tZ3n9gXDHA==
6744-
6745-
"@oxfmt/binding-linux-arm64-gnu@0.60.0":
6746-
version "0.60.0"
6747-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.60.0.tgz#7f4d785cdf5d19bbca12feddb3427a4ab9562aff"
6748-
integrity sha512-LTQdRBf6uzj/h7Xk6lKzbGD2hrF/fK4YI9LIN1c0509tPUn8wRa3mCmrFQpEWJPLYGFrLFFMTYW1Ljj6VqW2Hw==
6749-
6750-
"@oxfmt/binding-linux-arm64-musl@0.60.0":
6751-
version "0.60.0"
6752-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.60.0.tgz#9b2c2d39f5ef5f5222ede0b50ade11691092afb8"
6753-
integrity sha512-2JMo3XPxMPx3hiqddSZYyaH+fKJm6cz0u8n1naYjP/CdOQOZW34i8lKBUfmbWiuFvd6KoYXLmhAyBuvojsYS7Q==
6754-
6755-
"@oxfmt/binding-linux-ppc64-gnu@0.60.0":
6756-
version "0.60.0"
6757-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.60.0.tgz#f3d66a330848bc0d3818a9e6216f367ef24002d0"
6758-
integrity sha512-L3C+nBD13lr306tr/PjM3RMll+BVqgFrIgUyoeHuai5oueJrRLgO3j+GO5/Cbhtkf5PSlHYTI1JY7iqBd1qa6A==
6759-
6760-
"@oxfmt/binding-linux-riscv64-gnu@0.60.0":
6761-
version "0.60.0"
6762-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.60.0.tgz#de51a704a739fcca88bea3438a64487a297f7c92"
6763-
integrity sha512-M4MsmvqlxFiPtSRGyBYQSZxchEf463AOyd+Dh4/9xDpjWBsRtDUTDMFN5EdHinjVK1/eDJQ8MLpcYjpYayaCnA==
6764-
6765-
"@oxfmt/binding-linux-riscv64-musl@0.60.0":
6766-
version "0.60.0"
6767-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.60.0.tgz#836eb6b26deab5b426397fe9d4c49236ad343cf7"
6768-
integrity sha512-OH+9UskYuxRB+GxqdGkVN8f5UpwhqG8YscNo1wl8+KJ62cd7wZdGga6iGLJIf8kibF1WBwvlfDUx3cez/VXwFg==
6769-
6770-
"@oxfmt/binding-linux-s390x-gnu@0.60.0":
6771-
version "0.60.0"
6772-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.60.0.tgz#6ee90c92418865cf8f250a86c3452ad3b3663adc"
6773-
integrity sha512-y7AAFutt9wFWBFOAn6+BHaV39usZmcr3YYH2385f+NHgPNpIF9HpqKp0jgUxPaUOCyG3oaX5VhJduL1Nw164rw==
6774-
6775-
"@oxfmt/binding-linux-x64-gnu@0.60.0":
6776-
version "0.60.0"
6777-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.60.0.tgz#80e915e361c0e39441bf0c97f803fad7cf662ca6"
6778-
integrity sha512-yKZ9+CXAI+1RO5nH/4Z/9M6DAsfOzd5bw/gtWk81KB4mpalMaRRSXfouc5/tHxazDmBek55HNPepNYBgaCew0Q==
6779-
6780-
"@oxfmt/binding-linux-x64-musl@0.60.0":
6781-
version "0.60.0"
6782-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-x64-musl/-/binding-linux-x64-musl-0.60.0.tgz#e1405b8f62130cf3f2fdcedfaabec9e745b298fd"
6783-
integrity sha512-bCUGaF6hJOYnQzLJdHLZbvGsOd5oSvGAyJhPAKum2uyLYUuXmP8vqg690DWi2hqcnIoYpqSqCrjzE5aiUAgwQg==
6784-
6785-
"@oxfmt/binding-openharmony-arm64@0.60.0":
6786-
version "0.60.0"
6787-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-openharmony-arm64/-/binding-openharmony-arm64-0.60.0.tgz#ecb170daee765f491ef3554ed2b0385cc4f758d5"
6788-
integrity sha512-GrUeZOvzP30ExxfCuQiyofuUGI+OmvAgFwOO5w5p9mGPlxcyuqI+6Sy9fAKFFfLQrqKYWFgc5sYA2Unj/29nPg==
6789-
6790-
"@oxfmt/binding-win32-arm64-msvc@0.60.0":
6791-
version "0.60.0"
6792-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.60.0.tgz#c6793abd23ad2fa31a1b2946c780893c1197b97d"
6793-
integrity sha512-WD4Q954kUl2TDJV/6q7UnE2rlKk047kXLJsr4bJ2mXRaAqNXcmV3nwKUsGCc3mz/jYDBnXtJEaBErJEybK8iQQ==
6794-
6795-
"@oxfmt/binding-win32-ia32-msvc@0.60.0":
6796-
version "0.60.0"
6797-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.60.0.tgz#4ce5a927558513138b6bc00631dc5f776d490e76"
6798-
integrity sha512-HqDekjr8JXzVDUP1YthDZ1Y3CBEcuZT4WX3B+1kaxj8CvZA8Y2YhcEsXqoSop3tVsgjACxjnFQFDkBo0r/jq1Q==
6799-
6800-
"@oxfmt/binding-win32-x64-msvc@0.60.0":
6801-
version "0.60.0"
6802-
resolved "https://registry.yarnpkg.com/@oxfmt/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.60.0.tgz#56a02fb991e9a1a37e7dd02630151b6d5543c952"
6803-
integrity sha512-tz78yhmGPKboTMHCHSaUqXK8JrmoSejgDcWeqAtg2s07ZGKQ3rH5Jn8NuXPGNG33CDbY2e9NoQWXIVEmKO21Rw==
6710+
"@oxfmt/binding-android-arm-eabi@0.63.0":
6711+
version "0.63.0"
6712+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-android-arm-eabi/-/binding-android-arm-eabi-0.63.0.tgz#136176dc94fdc41e21415cc770d86f5066282e0f"
6713+
integrity sha512-YmRth4ZPGgEXcgmkhvANbC9uD67dxmSobW7DQuyt5tOBOKvPnIpk5SVHBj88E+7wMNRI2FhqaDbOhQFBix+b8A==
6714+
6715+
"@oxfmt/binding-android-arm64@0.63.0":
6716+
version "0.63.0"
6717+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-android-arm64/-/binding-android-arm64-0.63.0.tgz#10bc42457179210061c801122a64304619e3bdab"
6718+
integrity sha512-icbahX8X2X3sRamOMecvdYeZXWjPDazRDIfvWfy7Ca1nc/ZDT2Y9k5Nt7s46EqFd7NQPdgk+CM3/SgIT5LPCaQ==
6719+
6720+
"@oxfmt/binding-darwin-arm64@0.63.0":
6721+
version "0.63.0"
6722+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-darwin-arm64/-/binding-darwin-arm64-0.63.0.tgz#5f9084d9a760a1836387f8970a7f9d614ec3d909"
6723+
integrity sha512-WV+Ze5v5gI2qoj8jpAovt8KBTW8pjEz/AiMXXjeTQS+Bmf/MmZXTS40S8xNPDszX+W8WDv2Bbk6qKrMTtUGu1A==
6724+
6725+
"@oxfmt/binding-darwin-x64@0.63.0":
6726+
version "0.63.0"
6727+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-darwin-x64/-/binding-darwin-x64-0.63.0.tgz#badd4a02218a9a62319817d5c337b30159a54a21"
6728+
integrity sha512-CJGSBdDxXOWIpoFXHpverimCvz084KA7L483rqJ44c3jDtzv6d4qOSoR/V9ywSHfV+Ks1lwIj2P49BFhunLNAA==
6729+
6730+
"@oxfmt/binding-freebsd-x64@0.63.0":
6731+
version "0.63.0"
6732+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-freebsd-x64/-/binding-freebsd-x64-0.63.0.tgz#a17261e95c8ebef1f76d8aaac746a64fdb6ba51e"
6733+
integrity sha512-BDfKY+KhL2078cgswBBFQPAYuxCy93bS/iC5frdSeSbTLcGrR6VC2hsuPTanoJmg84+wSyWl0wWC1eR+uTnkRg==
6734+
6735+
"@oxfmt/binding-linux-arm-gnueabihf@0.63.0":
6736+
version "0.63.0"
6737+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.63.0.tgz#baeee34bb08e0769af878623f442e83bc0aacd7a"
6738+
integrity sha512-Ov1cQEXT4mj7cojAokWSS1eoxkoyvbDfAbxNsGIKY2o36kvdAaFzPxRN6NxFRk9fD72B8oCoTTX/NuYTUWlpsg==
6739+
6740+
"@oxfmt/binding-linux-arm-musleabihf@0.63.0":
6741+
version "0.63.0"
6742+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.63.0.tgz#e70d5697ec4b6bb5f87a3f019e01b3f956b8e44b"
6743+
integrity sha512-0LE7ro3+6L79jcMANycAZfRaC7zxr9YZ2+vEL5uMD9QlEep+rS/r1kSJsnuLl991NXJZD60euh0PC1GHrR20vw==
6744+
6745+
"@oxfmt/binding-linux-arm64-gnu@0.63.0":
6746+
version "0.63.0"
6747+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.63.0.tgz#638a8ed4f3d256c50aeb6d2c19cfc65792c902e1"
6748+
integrity sha512-izPk+2Z4gjuZK32Fqh5qXoMpT/2NXzLh++ob57HiEiVSQZ1iYXu8EKMzb+K5AvWyIEXhdDIt7ADjGGtFhkT9Bw==
6749+
6750+
"@oxfmt/binding-linux-arm64-musl@0.63.0":
6751+
version "0.63.0"
6752+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.63.0.tgz#af5a9b787f5233f27a3360ad56235fc1b011f760"
6753+
integrity sha512-alPmbOuWXFXiSo+lOtv6X71C7SYMEDW2WVvywOvf9BwKgEhSNGhMTLeFVSjKUMCamcjbbgVdsWF8GN1uy8xshg==
6754+
6755+
"@oxfmt/binding-linux-ppc64-gnu@0.63.0":
6756+
version "0.63.0"
6757+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.63.0.tgz#c1a211206134a5577e355a495989e0d733218d60"
6758+
integrity sha512-BdzCPvolJc4AWZ+YMzgUDJcDzbQWrFjYuqBHoNHNqP1aCaluQRJNs4k3vNU5IG7vTpjf9zeD73D7MFM1TecZpg==
6759+
6760+
"@oxfmt/binding-linux-riscv64-gnu@0.63.0":
6761+
version "0.63.0"
6762+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.63.0.tgz#4863f0311e5c1b88f75ef822959b3ca4fd938937"
6763+
integrity sha512-7sIgfLzqtNKSkMGsGVyRpHwpjNezRg2XONvUOheFZs95TSZpM0JAuPpA8KrQFsWc4wPU95roX2O69JgH8igOgw==
6764+
6765+
"@oxfmt/binding-linux-riscv64-musl@0.63.0":
6766+
version "0.63.0"
6767+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.63.0.tgz#ad05a017d12553e2f544743c4940adb552aa1d1c"
6768+
integrity sha512-9Tcg0y0WcVa6Mm9AgcgFMseDS+VkFJZpKZ8We9SpDY4gg5jewSwln+0sO04QLcTS1BtfDl9MwR+NfID8L7PUTg==
6769+
6770+
"@oxfmt/binding-linux-s390x-gnu@0.63.0":
6771+
version "0.63.0"
6772+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.63.0.tgz#2803f539db15bc66db115888fa8f84d6531ed2b9"
6773+
integrity sha512-qWKC1pEOpx1qYhXaugPhHUeXwSfqEOk2wJH2LqVXGPV5iQYfdAZdt+d2XDiX4DTSWA2QDMUcFB+wEORh3Xn/sA==
6774+
6775+
"@oxfmt/binding-linux-x64-gnu@0.63.0":
6776+
version "0.63.0"
6777+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.63.0.tgz#c22a06a60ae2d6b3de522095e0c50a816040a033"
6778+
integrity sha512-S9wXYOiGSqYGS4Fx/TFsY+xDd/7dE5s+rUgbA4TsHiVF9e8J3ZcKmP7dsP/7iqLI9Wz7Ic7TzEr3mdthRCTdrA==
6779+
6780+
"@oxfmt/binding-linux-x64-musl@0.63.0":
6781+
version "0.63.0"
6782+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-linux-x64-musl/-/binding-linux-x64-musl-0.63.0.tgz#48d3eeaf8e3757f638cf92de5ee4858befc9c0a3"
6783+
integrity sha512-5eGyTJuMZNwBSHCivXt8Yuta6GeTYksOPXRk2MIhajiyFGQx7bjaHIwY+ZusAoFHhT157A9x6sktLjYo9D5oMQ==
6784+
6785+
"@oxfmt/binding-openharmony-arm64@0.63.0":
6786+
version "0.63.0"
6787+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-openharmony-arm64/-/binding-openharmony-arm64-0.63.0.tgz#02be9e140ae35ba30f52bdce27612fece4a01ab3"
6788+
integrity sha512-Rz7hx+Dv3DoW/S6pwVAyjfFXp7/trdQ1zg+vNmsdsdDNlUccugp4XNqambSuEAeP0DaG9k72AtNyfDXCEg0AGw==
6789+
6790+
"@oxfmt/binding-win32-arm64-msvc@0.63.0":
6791+
version "0.63.0"
6792+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.63.0.tgz#2226eaf52b6345a2cb926499216b2486cf0dbec2"
6793+
integrity sha512-T/IuizKN9mr4Xw6YYnptkXRNdLkyIlUZ7c8zfTOBpoytZyJ1BAsMUvsMDEx0X4YvSMpaivm+DR8112rQfzC25g==
6794+
6795+
"@oxfmt/binding-win32-ia32-msvc@0.63.0":
6796+
version "0.63.0"
6797+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.63.0.tgz#58d263bb5ecd7330c02f9dcd8cda10f66e42e74b"
6798+
integrity sha512-XjrO5FJ5Wl9vsAxtCP1G/eaeT6y1K2s9CICUHGE42cEjou32/J6S+B1KnrOAboj6E7uhJnwPbRSvznWcxNdA0g==
6799+
6800+
"@oxfmt/binding-win32-x64-msvc@0.63.0":
6801+
version "0.63.0"
6802+
resolved "https://registry.yarnpkg.com/@oxfmt/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.63.0.tgz#02a166c8a8049c55d0096d1ba9d8e73f3a4d26a7"
6803+
integrity sha512-sgsHCQy432OTQH4Ikk3tZptp3GqwnhwUDuY0loBH41zyHWfMZY9v8Dy78wsnSofHejvFozZGgJgBB1A0LQRwMQ==
68046804

68056805
"@oxlint-tsgolint/darwin-arm64@7.0.2001":
68066806
version "7.0.2001"
@@ -21603,32 +21603,32 @@ oxc-walker@^1.1.1:
2160321603
resolved "https://registry.yarnpkg.com/oxc-walker/-/oxc-walker-1.1.1.tgz#23d4a900f789bc537095442537cd2a7670fbc8dd"
2160421604
integrity sha512-Hwd7dq28zu/Er99+bpWp16CGwFrhyalJh0W3JOB7XpPvgWo3MqMi2ksWGKuzzA9zt50mJ2pIUwR5lpAdZ9ACNQ==
2160521605

21606-
oxfmt@^0.60.0:
21607-
version "0.60.0"
21608-
resolved "https://registry.yarnpkg.com/oxfmt/-/oxfmt-0.60.0.tgz#3817613e9c862b2eff289abaebbd69e5c80aba53"
21609-
integrity sha512-fViX6i+gJuZWY+jI/fnR6WRbRj70GZ9RlCd30MygJrHTUNc4DxvKHWw8vBjMjffv3PgU5qWDR0AzmojQByqaZA==
21606+
oxfmt@^0.63.0:
21607+
version "0.63.0"
21608+
resolved "https://registry.yarnpkg.com/oxfmt/-/oxfmt-0.63.0.tgz#c7338e6c43a68d5cf8dc61c08b617d77cb54e323"
21609+
integrity sha512-kgdDwv35wvVf6554U2Ab8Jnd0zTM+TsEQWwaB70RAjK3gICFAFGO+2Hd3Be27GMoXj3XRL9IKSNRVl7KBQL6iw==
2161021610
dependencies:
2161121611
tinypool "2.1.0"
2161221612
optionalDependencies:
21613-
"@oxfmt/binding-android-arm-eabi" "0.60.0"
21614-
"@oxfmt/binding-android-arm64" "0.60.0"
21615-
"@oxfmt/binding-darwin-arm64" "0.60.0"
21616-
"@oxfmt/binding-darwin-x64" "0.60.0"
21617-
"@oxfmt/binding-freebsd-x64" "0.60.0"
21618-
"@oxfmt/binding-linux-arm-gnueabihf" "0.60.0"
21619-
"@oxfmt/binding-linux-arm-musleabihf" "0.60.0"
21620-
"@oxfmt/binding-linux-arm64-gnu" "0.60.0"
21621-
"@oxfmt/binding-linux-arm64-musl" "0.60.0"
21622-
"@oxfmt/binding-linux-ppc64-gnu" "0.60.0"
21623-
"@oxfmt/binding-linux-riscv64-gnu" "0.60.0"
21624-
"@oxfmt/binding-linux-riscv64-musl" "0.60.0"
21625-
"@oxfmt/binding-linux-s390x-gnu" "0.60.0"
21626-
"@oxfmt/binding-linux-x64-gnu" "0.60.0"
21627-
"@oxfmt/binding-linux-x64-musl" "0.60.0"
21628-
"@oxfmt/binding-openharmony-arm64" "0.60.0"
21629-
"@oxfmt/binding-win32-arm64-msvc" "0.60.0"
21630-
"@oxfmt/binding-win32-ia32-msvc" "0.60.0"
21631-
"@oxfmt/binding-win32-x64-msvc" "0.60.0"
21613+
"@oxfmt/binding-android-arm-eabi" "0.63.0"
21614+
"@oxfmt/binding-android-arm64" "0.63.0"
21615+
"@oxfmt/binding-darwin-arm64" "0.63.0"
21616+
"@oxfmt/binding-darwin-x64" "0.63.0"
21617+
"@oxfmt/binding-freebsd-x64" "0.63.0"
21618+
"@oxfmt/binding-linux-arm-gnueabihf" "0.63.0"
21619+
"@oxfmt/binding-linux-arm-musleabihf" "0.63.0"
21620+
"@oxfmt/binding-linux-arm64-gnu" "0.63.0"
21621+
"@oxfmt/binding-linux-arm64-musl" "0.63.0"
21622+
"@oxfmt/binding-linux-ppc64-gnu" "0.63.0"
21623+
"@oxfmt/binding-linux-riscv64-gnu" "0.63.0"
21624+
"@oxfmt/binding-linux-riscv64-musl" "0.63.0"
21625+
"@oxfmt/binding-linux-s390x-gnu" "0.63.0"
21626+
"@oxfmt/binding-linux-x64-gnu" "0.63.0"
21627+
"@oxfmt/binding-linux-x64-musl" "0.63.0"
21628+
"@oxfmt/binding-openharmony-arm64" "0.63.0"
21629+
"@oxfmt/binding-win32-arm64-msvc" "0.63.0"
21630+
"@oxfmt/binding-win32-ia32-msvc" "0.63.0"
21631+
"@oxfmt/binding-win32-x64-msvc" "0.63.0"
2163221632

2163321633
oxlint-tsgolint@7:
2163421634
version "7.0.2001"

0 commit comments

Comments
 (0)