Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-alpha.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Feb 4, 2024
2 parents 81915c1 + eb786b6 commit 7a6509a
Show file tree
Hide file tree
Showing 6 changed files with 266 additions and 24 deletions.
9 changes: 5 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"$schema": "https://json.schemastore.org/eslintrc",
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:unicorn/recommended",
"prettier"
],
"rules": {
"unicorn/prevent-abbreviations": "off"
},
"rules": {},
"plugins": []
}
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file.

## [1.0.0-alpha.5] - 2024-02-04

### Features

- Add simple use case for using input texts

### Refactor

- Update codes to improve code readability

### Documentation

- Update the link to farcaster frames docs

### Miscellaneous Tasks

- Add a new `lint` script for running `eslint`
- Update eslint rules and parser on `.eslintrc.json`

## [1.0.0-alpha.4] - 2024-01-31

### Refactor
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ the [Warpcast Embed Tools](https://warpcast.com/~/developers/embeds). This makes
development and testing process much more efficient and straightforward.

For detailed information on working with Farcaster Frames, refer to
the [Farcaster Frames documentation](https://warpcast.notion.site/Farcaster-Frames-4bd47fe97dc74a42a48d3a234636d8c5).
the [Farcaster Frames documentation](https://docs.farcaster.xyz/learn/what-is-farcaster/frames).
Additionally, to learn more about Hono, visit the [Hono documentation](https://hono.dev/top).

## Contributing
Expand Down
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "farcaster-frames-template",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"keywords": [
"farcaster",
"frames",
Expand All @@ -11,16 +11,19 @@
"scripts": {
"dev": "pnpm run '/^dev:.*/'",
"dev:server": "tsx watch src/index.ts",
"dev:tunnel": "lt --port 3000"
"dev:tunnel": "lt --port 3000",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@hono/node-server": "^1.7.0",
"hono": "^3.12.9"
"@hono/node-server": "1.7.0",
"hono": "3.12.10"
},
"devDependencies": {
"@types/eslint": "8.56.2",
"@types/eslint-config-prettier": "6.11.3",
"@types/node": "20.11.13",
"@types/node": "20.11.16",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
Expand All @@ -30,7 +33,8 @@
"prettier-plugin-jsdoc": "1.3.0",
"prettier-plugin-organize-attributes": "1.0.0",
"prettier-plugin-organize-imports": "3.2.4",
"tsx": "4.7.0"
"tsx": "4.7.0",
"typescript": "5.3.3"
},
"resolutions": {
"axios": ">=1.6.0"
Expand Down
Loading

0 comments on commit 7a6509a

Please sign in to comment.