@wvb/config 0.1.0-next.e459de3 → 0.1.0-next.f941058
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -3
- package/dist/remote/index.cjs +1 -1
- package/dist/remote/index.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## config v0.1.0-next.
|
|
3
|
+
## config v0.1.0-next.f941058
|
|
4
4
|
|
|
5
|
-
This release includes packages: [`@wvb/config`](https://www.npmjs.com/package/@wvb/config/v/0.1.0-next.
|
|
5
|
+
This release includes packages: [`@wvb/config`](https://www.npmjs.com/package/@wvb/config/v/0.1.0-next.f941058)
|
|
6
6
|
|
|
7
|
+
- fix: bundle integrity/signature verification & deterministic serialization (#196) (02018aa)
|
|
7
8
|
- refactor(cli,config): collapse pack outDir + outFileName into single outFile (#166) (7d67d53)
|
|
8
9
|
- feat(cli,config): add local builtin installation option (#160) (a2ef9f3)
|
|
9
10
|
- feat(ffi): add ffi package for Android/iOS bindings (#139) (c41b723)
|
|
10
11
|
- feat: redesgin cli commands, add local remote provider, oxc -> biome (#132) (af26b39)
|
|
11
12
|
- chore: fix xtask artifacts missing platforms (#112) (5d60ad6)
|
|
12
|
-
- update dependencies: wvb-node@0.1.0-next.
|
|
13
|
+
- update dependencies: wvb-node@0.1.0-next.f941058, @wvb/node@0.1.0-next.f941058, @wvb/node-android-arm-eabi@0.1.0-next.f941058, @wvb/node-android-arm64@0.1.0-next.f941058, @wvb/node-darwin-arm64@0.1.0-next.f941058, @wvb/node-darwin-x64@0.1.0-next.f941058, @wvb/node-linux-arm-gnueabihf@0.1.0-next.f941058, @wvb/node-linux-arm64-gnu@0.1.0-next.f941058, @wvb/node-linux-arm64-musl@0.1.0-next.f941058, @wvb/node-linux-x64-gnu@0.1.0-next.f941058, @wvb/node-linux-x64-musl@0.1.0-next.f941058, @wvb/node-win32-arm64-msvc@0.1.0-next.f941058, @wvb/node-win32-ia32-msvc@0.1.0-next.f941058, @wvb/node-win32-x64-msvc@0.1.0-next.f941058
|
package/dist/remote/index.cjs
CHANGED
|
@@ -5,7 +5,7 @@ async function makeIntegrity(maker, data) {
|
|
|
5
5
|
if (typeof maker === "function") return maker({ data });
|
|
6
6
|
const alg = maker?.algorithm ?? "sha256";
|
|
7
7
|
const hash = await crypto.subtle.digest({ name: hashAlg$1(alg) }, new Uint8Array(data));
|
|
8
|
-
return `${alg}:${node_buffer.Buffer.from(hash).toString("
|
|
8
|
+
return `${alg}:${node_buffer.Buffer.from(hash).toString("base64")}`;
|
|
9
9
|
}
|
|
10
10
|
function hashAlg$1(rasHash) {
|
|
11
11
|
switch (rasHash) {
|
package/dist/remote/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ async function makeIntegrity(maker, data) {
|
|
|
4
4
|
if (typeof maker === "function") return maker({ data });
|
|
5
5
|
const alg = maker?.algorithm ?? "sha256";
|
|
6
6
|
const hash = await crypto.subtle.digest({ name: hashAlg$1(alg) }, new Uint8Array(data));
|
|
7
|
-
return `${alg}:${Buffer.from(hash).toString("
|
|
7
|
+
return `${alg}:${Buffer.from(hash).toString("base64")}`;
|
|
8
8
|
}
|
|
9
9
|
function hashAlg$1(rasHash) {
|
|
10
10
|
switch (rasHash) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wvb/config",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.f941058",
|
|
4
4
|
"description": "Configuration for webview bundle",
|
|
5
5
|
"homepage": "https://github.com/webview-bundle/webview-bundle",
|
|
6
6
|
"bugs": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "25.9.1",
|
|
46
|
-
"@wvb/node": "^0.1.0-next.
|
|
46
|
+
"@wvb/node": "^0.1.0-next.f941058",
|
|
47
47
|
"tsdown": "0.22.1",
|
|
48
48
|
"type-fest": "^4.40.1",
|
|
49
49
|
"typescript": "6.0.3",
|