mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 00:05:51 +00:00
fix: 修复 Bun.hash 不存在的问题
This commit is contained in:
10
build.ts
10
build.ts
@@ -145,7 +145,15 @@ if (typeof globalThis.Bun === "undefined") {
|
|||||||
function $(parts, ...args) {
|
function $(parts, ...args) {
|
||||||
throw new Error("Bun.$ shell API is not available in Node.js. Use Bun runtime for this feature.");
|
throw new Error("Bun.$ shell API is not available in Node.js. Use Bun runtime for this feature.");
|
||||||
}
|
}
|
||||||
globalThis.Bun = { which, $ };
|
function hash(data, seed) {
|
||||||
|
let h = ((seed || 0) ^ 0x811c9dc5) >>> 0;
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
h ^= data.charCodeAt(i);
|
||||||
|
h = Math.imul(h, 0x01000193) >>> 0;
|
||||||
|
}
|
||||||
|
return h;
|
||||||
|
}
|
||||||
|
globalThis.Bun = { which, $, hash };
|
||||||
}
|
}
|
||||||
import "./cli.js"
|
import "./cli.js"
|
||||||
`
|
`
|
||||||
|
|||||||
Reference in New Issue
Block a user