@renovatebot/pgp 1.0.5 → 1.0.7
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/dist/dotnet/_framework/BouncyCastle.Cryptography.wasm +0 -0
- package/dist/dotnet/_framework/System.Private.CoreLib.wasm +0 -0
- package/dist/dotnet/_framework/blazor.boot.json +5 -5
- package/dist/dotnet/_framework/dotnet.native.wasm +0 -0
- package/dist/dotnet/_framework/lib.wasm +0 -0
- package/dist/teavm/lib.js +2505 -2516
- package/dist/teavm/lib.wasm +0 -0
- package/index.js +6 -1
- package/package.json +3 -2
package/dist/teavm/lib.wasm
CHANGED
|
Binary file
|
package/index.js
CHANGED
|
@@ -17,7 +17,12 @@ export async function decrypt(key, data, options) {
|
|
|
17
17
|
await fs.readFile(
|
|
18
18
|
new URL(`./dist/teavm/lib.wasm`, import.meta.url),
|
|
19
19
|
),
|
|
20
|
-
{
|
|
20
|
+
{
|
|
21
|
+
memory: {
|
|
22
|
+
shared: true,
|
|
23
|
+
},
|
|
24
|
+
nodejs: true,
|
|
25
|
+
},
|
|
21
26
|
).then((teavm) => teavm.exports),
|
|
22
27
|
);
|
|
23
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@renovatebot/pgp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "PGP library for renovate",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"renovate",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"prettier": "PRETTIER_EXPERIMENTAL_CLI=1 prettier -c -u .",
|
|
45
45
|
"prettier:fix": "PRETTIER_EXPERIMENTAL_CLI=1 prettier -w -u .",
|
|
46
46
|
"test": "vitest run",
|
|
47
|
-
"test:teavm-wasm": "node test/teavm/wasm.js"
|
|
47
|
+
"test:teavm-wasm": "node test/teavm/wasm.js",
|
|
48
|
+
"test:teavm-wasm:prof": "node --prof test/teavm/wasm.js"
|
|
48
49
|
}
|
|
49
50
|
}
|