@farcaster/create-mini-app 0.0.3 → 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.2 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.2 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,11 @@
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
+
3
9
  ## 0.0.3
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farcaster/create-mini-app",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Create Farcaster Mini Apps with one command",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -24,7 +24,6 @@
24
24
  "@types/react-dom": "^18.3.0",
25
25
  "@vitejs/plugin-react": "^4.2.1",
26
26
  "@wagmi/cli": "latest",
27
- "buffer": "^6.0.3",
28
27
  "typescript": "^5.4.5",
29
28
  "vite": "^5.2.11"
30
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(