@reown/appkit-cli 1.6.9-rc.1.0 → 1.6.9-rc.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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @reown/appkit-cli
2
2
 
3
- ## 1.6.9-rc.1.0
3
+ ## 1.6.9-rc.2.0
4
4
 
5
5
  ### Patch Changes
6
6
 
package/README.md CHANGED
@@ -48,14 +48,14 @@ npx appkit-cli
48
48
  Provide examples of some paramaeters:
49
49
 
50
50
  ```bash
51
- appkit-app [project-name]
51
+ appkit-cli [project-name]
52
52
  ```
53
53
 
54
54
  For example:
55
55
 
56
56
  ```bash
57
- appkit-app my-app
58
- appkit-app
57
+ appkit-cli my-app
58
+ appkit-cli
59
59
  ```
60
60
 
61
61
  ## Linking/Unlinking for Local Development
package/index.js CHANGED
@@ -24,7 +24,8 @@ async function questionFramework() {
24
24
  choices: [
25
25
  { name: 'Next.js', value: 'nextjs' },
26
26
  { name: 'React', value: 'react' },
27
- { name: 'Vue', value: 'vue' }
27
+ { name: 'Vue', value: 'vue' },
28
+ { name: 'Javascript', value: 'javascript' }
28
29
  ]
29
30
  }
30
31
  ]
@@ -36,11 +37,12 @@ async function questionLibrary() {
36
37
  {
37
38
  type: 'list',
38
39
  name: 'library',
39
- message: 'wagmi, ethers, solana or EVM+Solana ?',
40
+ message: 'wagmi, ethers, solana, bitcoin or EVM+Solana ?',
40
41
  choices: [
41
42
  { name: 'wagmi', value: 'wagmi' },
42
43
  { name: 'ethers', value: 'ethers' },
43
44
  { name: 'Solana', value: 'solana' },
45
+ { name: 'Bitcoin', value: 'bitcoin' },
44
46
  { name: 'Multichain', value: 'multichain' }
45
47
  ]
46
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reown/appkit-cli",
3
- "version": "1.6.9-rc.1.0",
3
+ "version": "1.6.9-rc.2.0",
4
4
  "description": "Reown AppKit CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/utils.js CHANGED
@@ -20,6 +20,8 @@ export function generateRepoUrl(answerFramework, answerLibrary) {
20
20
  return `reown-com/appkit-web-examples/react/react-${answerLibrary.library}`
21
21
  case 'vue':
22
22
  return `reown-com/appkit-web-examples/vue/vue-${answerLibrary.library}`
23
+ case 'javascript':
24
+ return `reown-com/appkit-web-examples/javascript/javascript-${answerLibrary.library}`
23
25
  default:
24
26
  return 'reown-com/appkit-web-examples/react/react-wagmi'
25
27
  }