@mysten/create-dapp 0.2.4 → 0.2.5

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,13 @@
1
1
  # @mysten/create-dapp
2
2
 
3
+ ## 0.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0cafa94027]
8
+ - @mysten/sui.js@0.51.0
9
+ - @mysten/dapp-kit@0.12.3
10
+
3
11
  ## 0.2.4
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -15,7 +15,7 @@ ask you to select from one of the provided templates.
15
15
 
16
16
  The following templates are available:
17
17
 
18
- - `react-client-dapp`: A simple React dApp that fetches a list of objects owned by the connected
18
+ - `react-client-dapp`: A basic React dApp that fetches a list of objects owned by the connected
19
19
  wallet
20
20
  - `react-e2e-counter`: An end to end Example with move code and UI for a simple counter app
21
21
 
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.2.4",
6
+ "version": "0.2.5",
7
7
  "license": "Apache-2.0",
8
8
  "files": [
9
9
  "CHANGELOG.md",
@@ -30,8 +30,8 @@
30
30
  "dependencies": {
31
31
  "@types/node": "^20.4.2",
32
32
  "enquirer": "^2.4.1",
33
- "@mysten/dapp-kit": "0.12.2",
34
- "@mysten/sui.js": "0.50.1"
33
+ "@mysten/sui.js": "0.51.0",
34
+ "@mysten/dapp-kit": "0.12.3"
35
35
  },
36
36
  "sideEffects": false,
37
37
  "bin": "./bin/index.js",
@@ -1,6 +1,6 @@
1
1
  # Sui dApp Starter Template
2
2
 
3
- This dApp was created using `@mysten/create-dapp` that sets up a simple React
3
+ This dApp was created using `@mysten/create-dapp` that sets up a basic React
4
4
  Client dApp using the following tools:
5
5
 
6
6
  - [React](https://react.dev/) as the UI framework
@@ -1,6 +1,6 @@
1
1
  # Sui dApp Starter Template
2
2
 
3
- This dApp was created using `@mysten/create-dapp` that sets up a simple React
3
+ This dApp was created using `@mysten/create-dapp` that sets up a basic React
4
4
  Client dApp using the following tools:
5
5
 
6
6
  - [React](https://react.dev/) as the UI framework