Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/cli/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ dist-ssr
.idea
.DS_Store
node_modules
package-lock.json
pnpm-lock.yaml
yarn.lock
bun.lockb
3 changes: 1 addition & 2 deletions packages/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,8 @@ async function questionLibrary() {
{
type: 'list',
name: 'library',
message: 'AppKit Core, Wagmi, Ethers, Solana, Bitcoin or EVM+Solana ?',
message: 'Wagmi, Ethers, Solana, Bitcoin or EVM+Solana ?',
choices: [
{ name: 'AppKit Core', value: 'core' },
{ name: 'Wagmi', value: 'wagmi' },
{ name: 'Ethers', value: 'ethers' },
{ name: 'Solana', value: 'solana' },
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"author": "",
"license": "ISC",
"dependencies": {
"figlet": "1.8.0",
"inquirer": "12.4.2",
"figlet": "1.9.1",
"inquirer": "12.9.4",
"tiged": "2.12.7"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.27.4",
"@babel/plugin-transform-runtime": "7.28.3",
"@babel/preset-env": "7.27.2",
"@babel/runtime": "7.27.6",
"cross-env": "7.0.3",
"cross-env": "10.0.0",
"esm": "3.2.25",
"ts-node": "10.9.2"
"ts-node": "10.9.1"
Copy link
Preview

Copilot AI Sep 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This appears to be a downgrade from ts-node 10.9.2 to 10.9.1, which could introduce bugs that were fixed in the newer version. Consider keeping the current version or upgrading to the latest stable release.

Suggested change
"ts-node": "10.9.1"
"ts-node": "10.9.2"

Copilot uses AI. Check for mistakes.

},
"keywords": [
"appkit",
Expand Down
Loading