Skip to content

Commit 3050ad0

Browse files
authored
chore: Release v0.0.1-alpha.11 (#374)
2 parents c1ec45b + ae3d52c commit 3050ad0

399 files changed

Lines changed: 13650 additions & 12475 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Before submitting the PR, please make sure you do the following:
1717

1818
### Linked Issues
1919

20-
2120
### Additional context
2221

23-
<!-- e.g. is there anything you'd like reviewers to focus on? -->
22+
<!-- e.g. is there anything you'd like reviewers to focus on? -->

.github/actions/setup-version/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Setup Version
2-
description: 'Setup Version'
2+
description: "Setup Version"
33
outputs:
44
APP_VERSION:
5-
description: 'App Version'
5+
description: "App Version"
66
value: ${{ steps.version.outputs.APP_VERSION }}
77
runs:
8-
using: 'composite'
8+
using: "composite"
99
steps:
10-
- name: 'Write Version'
10+
- name: "Write Version"
1111
id: version
1212
shell: bash
1313
run: |

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ env:
2121
VITE_IMGPROXY_URL: ${{ vars.VITE_IMGPROXY_URL }}
2222
VITE_SENTRY_DSN: ${{ vars.VITE_SENTRY_DSN }}
2323
VITE_POSTHOG_KEY: ${{ vars.VITE_POSTHOG_KEY }}
24+
NODE_OPTIONS: --max-old-space-size=8192
2425

2526
jobs:
2627
release:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
pull_request:
33
push:
4-
branches: [main]
4+
branches: [main, dev]
55

66
name: CI Typecheck and Lint
77
concurrency:

.github/workflows/tag.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
push:
55
branches:
66
- main
7-
7+
env:
8+
NODE_OPTIONS: --max-old-space-size=8192
89
jobs:
910
create_tag:
1011
runs-on: ubuntu-latest

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ out
1111
.env.sentry-build-plugin
1212
.vercel
1313
stats.html
14+
15+
electron.vite.config.*.mjs
16+
vite.config.*.mjs

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
stable

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/hono.ts

.prettierrc.mjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
semi: false,
3+
singleQuote: false,
4+
printWidth: 100,
5+
tabWidth: 2,
6+
trailingComma: "all",
7+
}

.vscode/settings.json

Lines changed: 45 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
{
22
"[javascript][javascriptreact][typescript][typescriptreact][json][jsonc]": {
3-
"editor.formatOnSave": false,
3+
"editor.formatOnSave": true,
44
"editor.codeActionsOnSave": {
55
"source.fixAll.eslint": "explicit"
6-
}
6+
},
7+
"editor.defaultFormatter": "esbenp.prettier-vscode"
78
},
8-
99
"tailwindCSS.experimental.classRegex": [
1010
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
1111
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
1212
// ["tw\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
13-
1413
["tw`([^`]*)`", "([^`]*)"]
15-
1614
],
17-
1815
// If you do not want to autofix some rules on save
1916
// You can put this in your user settings or workspace settings
2017
"eslint.codeActionsOnSave.rules": [
@@ -25,22 +22,52 @@
2522
"!arrow-body-style",
2623
"*"
2724
],
28-
2925
// If you want to silent stylistic rules
3026
// You can put this in your user settings or workspace settings
3127
"eslint.rules.customizations": [
32-
{ "rule": "@stylistic/*", "severity": "off", "fixable": true },
33-
{ "rule": "tailwindcss/classnames-order", "severity": "off" },
34-
{ "rule": "antfu/consistent-list-newline", "severity": "off" },
35-
{ "rule": "hyoban/jsx-attribute-spacing", "severity": "off" },
36-
{ "rule": "simple-import-sort/*", "severity": "off" },
37-
{ "rule": "prefer-const", "severity": "off" },
38-
{ "rule": "unused-imports/no-unused-imports", "severity": "off" }
39-
],
40-
"cSpell.words": [
41-
"rsshub"
28+
{
29+
"rule": "@stylistic/*",
30+
"severity": "off",
31+
"fixable": true
32+
},
33+
{
34+
"rule": "tailwindcss/classnames-order",
35+
"severity": "off"
36+
},
37+
{
38+
"rule": "antfu/consistent-list-newline",
39+
"severity": "off"
40+
},
41+
{
42+
"rule": "hyoban/jsx-attribute-spacing",
43+
"severity": "off"
44+
},
45+
{
46+
"rule": "simple-import-sort/*",
47+
"severity": "off"
48+
},
49+
{
50+
"rule": "prefer-const",
51+
"severity": "off"
52+
},
53+
{
54+
"rule": "unused-imports/no-unused-imports",
55+
"severity": "off"
56+
}
4257
],
58+
"cSpell.words": ["rsshub"],
4359
"editor.foldingImportsByDefault": true,
4460
"commentTranslate.hover.enabled": false,
45-
"typescript.tsdk": "node_modules/typescript/lib"
61+
"typescript.tsdk": "node_modules/typescript/lib",
62+
"i18n-ally.enabledFrameworks": ["i18next"],
63+
"i18n-ally.displayLanguage": "en",
64+
"i18n-ally.localesPaths": [
65+
// "locales/app",
66+
// "locales/lang",
67+
// "locales/common",
68+
"locales/**/*"
69+
]
70+
// "i18n-ally.namespace": true,
71+
// "i18n-ally.pathMatcher": "{namespace}/{locale}.json",
72+
// "i18n-ally.defaultNamespace": "app",
4673
}

0 commit comments

Comments
 (0)