@mysten/create-dapp 0.1.8 → 0.2.1
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
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @mysten/create-dapp
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9ac0a4ec01: Add extensions to all sdk import paths
|
|
8
|
+
- Updated dependencies [9ac0a4ec01]
|
|
9
|
+
- @mysten/sui.js@0.49.1
|
|
10
|
+
- @mysten/dapp-kit@0.11.1
|
|
11
|
+
|
|
12
|
+
## 0.2.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- e5f9e3ba21: Replace tsup based build to fix issues with esm/cjs dual publishing
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [9ba167b0af]
|
|
21
|
+
- Updated dependencies [e5f9e3ba21]
|
|
22
|
+
- @mysten/dapp-kit@0.11.0
|
|
23
|
+
- @mysten/sui.js@0.49.0
|
|
24
|
+
|
|
3
25
|
## 0.1.8
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"author": "Mysten Labs <build@mystenlabs.com>",
|
|
4
4
|
"description": "A CLI for creating new Sui dApps",
|
|
5
5
|
"homepage": "https://sdk.mystenlabs.com",
|
|
6
|
-
"version": "0.1
|
|
6
|
+
"version": "0.2.1",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"files": [
|
|
9
9
|
"CHANGELOG.md",
|
|
@@ -24,15 +24,14 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"tsx": "^3.12.7",
|
|
28
27
|
"typescript": "^5.1.6",
|
|
29
28
|
"@mysten/build-scripts": "0.0.0"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
31
|
"@types/node": "^20.4.2",
|
|
33
32
|
"enquirer": "^2.4.1",
|
|
34
|
-
"@mysten/dapp-kit": "0.
|
|
35
|
-
"@mysten/sui.js": "0.
|
|
33
|
+
"@mysten/dapp-kit": "0.11.1",
|
|
34
|
+
"@mysten/sui.js": "0.49.1"
|
|
36
35
|
},
|
|
37
36
|
"sideEffects": false,
|
|
38
37
|
"bin": "./bin/index.js",
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
useSuiClient,
|
|
5
5
|
useSuiClientQuery,
|
|
6
6
|
} from "@mysten/dapp-kit";
|
|
7
|
-
import { SuiObjectData } from "@mysten/sui.js/client";
|
|
7
|
+
import type { SuiObjectData } from "@mysten/sui.js/client";
|
|
8
8
|
import { TransactionBlock } from "@mysten/sui.js/transactions";
|
|
9
9
|
import { Button, Flex, Heading, Text } from "@radix-ui/themes";
|
|
10
10
|
import { useNetworkVariable } from "./networkConfig";
|