create-varity-app 2.0.0-beta.20 → 2.0.0-beta.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-varity-app",
3
- "version": "2.0.0-beta.20",
3
+ "version": "2.0.0-beta.22",
4
4
  "description": "Create production-ready apps with auth, database, and payments built in",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -8,7 +8,6 @@
8
8
 
9
9
  # Auth (optional — dev credentials used automatically when blank)
10
10
  NEXT_PUBLIC_PRIVY_APP_ID=
11
- NEXT_PUBLIC_THIRDWEB_CLIENT_ID=
12
11
 
13
12
  # Database (optional — dev database used automatically when blank)
14
13
  NEXT_PUBLIC_VARITY_APP_TOKEN=
@@ -6,7 +6,7 @@ const nextConfig = {
6
6
  productionBrowserSourceMaps: false,
7
7
  webpack: (config, { isServer, dev }) => {
8
8
  // Suppress unused optional peer dependencies from UI Kit internals
9
- ['@react-native-async-storage/async-storage', 'viem', 'viem/chains', 'thirdweb/chains', 'thirdweb/react', 'wagmi', '@solana/kit', '@solana/sysvars', '@solana-program/token-2022', 'x402', '@coinbase/wallet-sdk', '@walletconnect/ethereum-provider'].forEach(pkg => { config.resolve.alias[pkg] = false; });
9
+ ['@react-native-async-storage/async-storage', 'viem', 'viem/chains', 'thirdweb', 'thirdweb/chains', 'thirdweb/react', 'thirdweb/deploys', 'thirdweb/storage', 'thirdweb/wallets', 'thirdweb/wallets/in-app', 'thirdweb/extensions/erc20', 'wagmi', '@solana/kit', '@solana/sysvars', '@solana-program/token-2022', 'x402', '@coinbase/wallet-sdk', '@walletconnect/ethereum-provider'].forEach(pkg => { config.resolve.alias[pkg] = false; });
10
10
  if (!dev && !isServer) config.devtool = false;
11
11
  return config;
12
12
  },