@mysten/create-dapp 0.1.8 → 0.2.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @mysten/create-dapp
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e5f9e3ba21: Replace tsup based build to fix issues with esm/cjs dual publishing
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [9ba167b0af]
12
+ - Updated dependencies [e5f9e3ba21]
13
+ - @mysten/dapp-kit@0.11.0
14
+ - @mysten/sui.js@0.49.0
15
+
3
16
  ## 0.1.8
4
17
 
5
18
  ### 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.8",
6
+ "version": "0.2.0",
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.10.3",
35
- "@mysten/sui.js": "0.48.1"
33
+ "@mysten/dapp-kit": "0.11.0",
34
+ "@mysten/sui.js": "0.49.0"
36
35
  },
37
36
  "sideEffects": false,
38
37
  "bin": "./bin/index.js",