@layerzerolabs/protocol-stellar-v2 0.2.37 → 0.2.39
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/.turbo/turbo-build.log +185 -266
- package/.turbo/turbo-lint.log +195 -284
- package/.turbo/turbo-test.log +1937 -1726
- package/package.json +4 -3
- package/sdk/.turbo/turbo-test.log +252 -251
- package/sdk/package.json +1 -1
- package/turbo.json +6 -2
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layerzerolabs/protocol-stellar-v2",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.39",
|
|
4
4
|
"private": false,
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@types/node": "^22.18.6",
|
|
7
7
|
"tsx": "^4.19.3",
|
|
8
8
|
"typescript": "^5.8.2",
|
|
9
|
-
"@layerzerolabs/common-node-utils": "0.2.
|
|
10
|
-
"@layerzerolabs/vm-tooling-stellar": "0.2.
|
|
9
|
+
"@layerzerolabs/common-node-utils": "0.2.39",
|
|
10
|
+
"@layerzerolabs/vm-tooling-stellar": "0.2.39"
|
|
11
11
|
},
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "restricted",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"generate:sdk": "pnpm exec lz-tool --script \"cargo run -p ts-bindings-gen\" stellar",
|
|
26
26
|
"lint": "pnpm exec lz-tool --script \"cargo clippy -- -D warnings\" stellar",
|
|
27
27
|
"lint:fix": "pnpm exec lz-tool --script \"cargo clippy --fix --allow-dirty --allow-staged && cargo fmt\" stellar",
|
|
28
|
+
"setup:toolchain": "pnpm exec lz-tool sync-toolchain",
|
|
28
29
|
"test": "pnpm exec lz-tool --script \"cargo nextest run\" stellar"
|
|
29
30
|
}
|
|
30
31
|
}
|