@farcaster/create-mini-app 0.0.2 → 0.0.4

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.
@@ -1,9 +1,9 @@
1
1
 
2
2
  
3
- > @farcaster/create-mini-app@0.0.1 build /Users/deodad/Repos/frames/packages/create-mini-app
3
+ > @farcaster/create-mini-app@0.0.3 build /Users/deodad/Repos/frames/packages/create-mini-app
4
4
  > pnpm run clean && tsc --project tsconfig.build.json
5
5
 
6
6
 
7
- > @farcaster/create-mini-app@0.0.1 clean /Users/deodad/Repos/frames/packages/create-mini-app
7
+ > @farcaster/create-mini-app@0.0.3 clean /Users/deodad/Repos/frames/packages/create-mini-app
8
8
  > rm -rf dist tsconfig.tsbuildinfo
9
9
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @farcaster/create-mini-app
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`34563f5`](https://github.com/farcasterxyz/frames/commit/34563f5944b063912b65ff5fe424149ef9341809) Thanks [@deodad](https://github.com/deodad)! - removed unneeded buffer polyfill
8
+
9
+ ## 0.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [`3ba1faa`](https://github.com/farcasterxyz/frames/commit/3ba1faa8fec42959705c7caecfb881087bb864a0) Thanks [@deodad](https://github.com/deodad)! - fixed build
14
+
3
15
  ## 0.0.2
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -5,11 +5,11 @@ Get up and running quickly with [Mini Apps](https://miniapps.xyz) by using the `
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm create @farcaster/create-mini-app
8
+ npm create @farcaster/mini-app
9
9
  # or
10
- pnpm create @farcaster/create-mini-app
10
+ pnpm create @farcaster/mini-app
11
11
  # or
12
- yarn create @farcaster/create-mini-app
12
+ yarn create @farcaster/mini-app
13
13
  ```
14
14
 
15
15
  ## Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farcaster/create-mini-app",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Create Farcaster Mini Apps with one command",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -15,16 +15,15 @@
15
15
  ],
16
16
  "license": "MIT",
17
17
  "devDependencies": {
18
- "@clack/prompts": "^0.10.0",
19
18
  "@types/fs-extra": "^11.0.4",
20
- "cac": "^6.7.14",
21
- "detect-package-manager": "^3.0.2",
22
- "fs-extra": "^11.3.0",
23
- "picocolors": "^1.1.1",
24
19
  "@farcaster/tsconfig": "0.0.2"
25
20
  },
26
21
  "dependencies": {
27
- "@farcaster/frame-wagmi-connector": "0.0.19"
22
+ "@clack/prompts": "^0.10.0",
23
+ "cac": "^6.7.14",
24
+ "detect-package-manager": "^3.0.2",
25
+ "fs-extra": "^11.3.0",
26
+ "picocolors": "^1.1.1"
28
27
  },
29
28
  "scripts": {
30
29
  "build": "pnpm run clean && tsc --project tsconfig.build.json",
@@ -10,7 +10,8 @@
10
10
  "preview": "vite preview"
11
11
  },
12
12
  "dependencies": {
13
- "@farcaster/frame-sdk": "^0.0.31",
13
+ "@farcaster/frame-sdk": "latest",
14
+ "@farcaster/frame-wagmi-connector": "latest",
14
15
  "@tanstack/react-query": "5.45.1",
15
16
  "react": "^18.3.1",
16
17
  "react-dom": "^18.3.1",
@@ -23,7 +24,6 @@
23
24
  "@types/react-dom": "^18.3.0",
24
25
  "@vitejs/plugin-react": "^4.2.1",
25
26
  "@wagmi/cli": "latest",
26
- "buffer": "^6.0.3",
27
27
  "typescript": "^5.4.5",
28
28
  "vite": "^5.2.11"
29
29
  }
@@ -1,4 +1,3 @@
1
- import { Buffer } from 'node:buffer'
2
1
  import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
3
2
  import React from 'react'
4
3
  import ReactDOM from 'react-dom/client'
@@ -9,8 +8,6 @@ import { config } from './wagmi.ts'
9
8
 
10
9
  import './index.css'
11
10
 
12
- globalThis.Buffer = Buffer
13
-
14
11
  const queryClient = new QueryClient()
15
12
 
16
13
  ReactDOM.createRoot(document.getElementById('root')!).render(