@vultisig/cli 0.1.1-alpha.1 → 0.1.1-alpha.2
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 +45 -0
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# @vultisig/cli
|
|
2
|
+
|
|
3
|
+
## 0.1.1-alpha.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9dcfb8b`](https://github.com/vultisig/vultisig-sdk/commit/9dcfb8b4b29de73b1301f791b50dc417a8f899f3) - fix: use yarn npm publish to properly resolve workspace protocols
|
|
8
|
+
|
|
9
|
+
## 0.1.1-alpha.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`0985a37`](https://github.com/vultisig/vultisig-sdk/commit/0985a375c6009e2550231d759e84b576454ce759) - fix: use workspace:^ for SDK dependency to resolve correctly when publishing
|
|
14
|
+
|
|
15
|
+
## 0.1.1-alpha.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [`cc96f64`](https://github.com/vultisig/vultisig-sdk/commit/cc96f64622a651eb6156f279afbbfe0aa4219179) - fix: re-release as alpha (0.1.0 was accidentally published as stable)
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`cc96f64`](https://github.com/vultisig/vultisig-sdk/commit/cc96f64622a651eb6156f279afbbfe0aa4219179)]:
|
|
22
|
+
- @vultisig/sdk@0.1.1-alpha.0
|
|
23
|
+
|
|
24
|
+
## 0.1.0
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- [`1f20084`](https://github.com/vultisig/vultisig-sdk/commit/1f20084bdaf6ddf00d2dd5c70ec6070e00a94e91) - docs: update documentation to reflect current SDK and CLI interfaces
|
|
29
|
+
- Fix import paths: use `@vultisig/sdk` instead of platform-specific paths (`/node`, `/browser`)
|
|
30
|
+
- Update Node.js version requirement from 18+ to 20+
|
|
31
|
+
- Fix Storage interface documentation (generic types, correct method signatures)
|
|
32
|
+
- Fix WASM copy instruction package name (`@vultisig/sdk` not `vultisig-sdk`)
|
|
33
|
+
- Add missing CLI environment variable `VULTISIG_VAULT`
|
|
34
|
+
- Add missing CLI interactive shell commands (`vault`, `.clear`)
|
|
35
|
+
- Add `--vault` global option to CLI documentation
|
|
36
|
+
- Fix project structure paths in SDK README
|
|
37
|
+
|
|
38
|
+
- [`c862869`](https://github.com/vultisig/vultisig-sdk/commit/c8628695cfc47209b26bfe628c9608d29c541a5b) - fix: npm package installation issues
|
|
39
|
+
- Remove bundled internal packages (@core/_, @lib/_) from SDK dependencies - these are bundled into dist
|
|
40
|
+
- Switch CLI build from tsc to esbuild for proper ESM compatibility
|
|
41
|
+
- Update publish workflow to use `yarn npm publish` with --tolerate-republish
|
|
42
|
+
- Require Node.js >= 20
|
|
43
|
+
|
|
44
|
+
- Updated dependencies [[`8694cd9`](https://github.com/vultisig/vultisig-sdk/commit/8694cd957573b8334ff0f29167f8b45c5140ce42), [`1f20084`](https://github.com/vultisig/vultisig-sdk/commit/1f20084bdaf6ddf00d2dd5c70ec6070e00a94e91), [`c862869`](https://github.com/vultisig/vultisig-sdk/commit/c8628695cfc47209b26bfe628c9608d29c541a5b)]:
|
|
45
|
+
- @vultisig/sdk@0.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vultisig/cli",
|
|
3
|
-
"version": "0.1.1-alpha.
|
|
3
|
+
"version": "0.1.1-alpha.2",
|
|
4
4
|
"description": "Command-line wallet for Vultisig - multi-chain MPC wallet management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"homepage": "https://vultisig.com",
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@vultisig/sdk": "
|
|
51
|
+
"@vultisig/sdk": "^0.1.1-alpha.0",
|
|
52
52
|
"chalk": "^5.3.0",
|
|
53
53
|
"cli-table3": "^0.6.5",
|
|
54
54
|
"commander": "^12.0.0",
|
|
@@ -74,4 +74,4 @@
|
|
|
74
74
|
"access": "public",
|
|
75
75
|
"registry": "https://registry.npmjs.org/"
|
|
76
76
|
}
|
|
77
|
-
}
|
|
77
|
+
}
|