@farcaster/create-mini-app 0.0.8 → 0.1.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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +10 -0
- package/README.md +2 -2
- package/package.json +6 -3
- package/templates/default/README.md +4 -1
- package/templates/default/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @farcaster/create-mini-app@0.0
|
|
3
|
+
> @farcaster/create-mini-app@0.1.0 build /Users/deodad/Repos/miniapps/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
|
|
7
|
+
> @farcaster/create-mini-app@0.1.0 clean /Users/deodad/Repos/miniapps/packages/create-mini-app
|
|
8
8
|
> rm -rf dist tsconfig.tsbuildinfo
|
|
9
9
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @farcaster/create-mini-app
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#396](https://github.com/farcasterxyz/miniapps/pull/396) [`d23f93f`](https://github.com/farcasterxyz/miniapps/commit/d23f93f5dcfb382d52e2faa8dc6be3dd1ab0674f) Thanks [@CassOnMars](https://github.com/CassOnMars)! - introduce mini app rename
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#402](https://github.com/farcasterxyz/miniapps/pull/402) [`0f94fc1`](https://github.com/farcasterxyz/miniapps/commit/0f94fc15b590a551dffb545be9f04fcf9ea41689) Thanks [@PirosB3](https://github.com/PirosB3)! - Enforce Node.js version
|
|
12
|
+
|
|
3
13
|
## 0.0.8
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @farcaster/create-mini-app
|
|
2
2
|
|
|
3
|
-
Get up and running quickly with [Mini Apps](https://miniapps.xyz) by using the `@farcaster/create-mini-app` CLI.
|
|
3
|
+
Get up and running quickly with [Mini Apps](https://miniapps.farcaster.xyz) by using the `@farcaster/create-mini-app` CLI.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -14,4 +14,4 @@ yarn create @farcaster/mini-app
|
|
|
14
14
|
|
|
15
15
|
## Documentation
|
|
16
16
|
|
|
17
|
-
For documentation and guides, visit [miniapps.xyz](https://miniapps.xyz/docs/getting-started).
|
|
17
|
+
For documentation and guides, visit [miniapps.farcaster.xyz](https://miniapps.farcaster.xyz/docs/getting-started).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@farcaster/create-mini-app",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Create Farcaster Mini Apps with one command",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/fs-extra": "^11.0.4",
|
|
20
|
-
"typescript": "^5.8.
|
|
21
|
-
"@farcaster/tsconfig": "0.0
|
|
20
|
+
"typescript": "^5.8.3",
|
|
21
|
+
"@farcaster/tsconfig": "0.1.0"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@clack/prompts": "^0.10.0",
|
|
@@ -27,6 +27,9 @@
|
|
|
27
27
|
"fs-extra": "^11.3.0",
|
|
28
28
|
"picocolors": "^1.1.1"
|
|
29
29
|
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=22.11.0"
|
|
32
|
+
},
|
|
30
33
|
"scripts": {
|
|
31
34
|
"build": "pnpm run clean && tsc --project tsconfig.build.json",
|
|
32
35
|
"check:types": "tsc --noEmit",
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
This is a [Vite](https://vitejs.dev) project bootstrapped with [`@farcaster/create-mini-app`](https://github.com/farcasterxyz/
|
|
1
|
+
This is a [Vite](https://vitejs.dev) project bootstrapped with [`@farcaster/create-mini-app`](https://github.com/farcasterxyz/miniapps/tree/main/packages/create-mini-app).
|
|
2
|
+
|
|
3
|
+
For documentation and guides, visit [miniapps.farcaster.xyz](https://miniapps.farcaster.xyz/docs/getting-started).
|
|
2
4
|
|
|
3
5
|
## `farcaster.json`
|
|
4
6
|
|
|
@@ -18,3 +20,4 @@ Add a the `fc:frame` in `index.html` to make your root app URL sharable in feeds
|
|
|
18
20
|
<meta name="fc:frame" content='{"version":"next","imageUrl":"https://placehold.co/900x600.png?text=Frame%20Image","button":{"title":"Open","action":{"type":"launch_frame","name":"App Name","url":"https://app.com"}}}' />
|
|
19
21
|
</head>
|
|
20
22
|
```
|
|
23
|
+
|