Skip to content

feat: ✨ disable input and submit after success #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -36,18 +36,18 @@ jobs:

lint:
name: Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Use Node.js 20
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: 'pnpm'

- name: Install dependencies
Expand All @@ -66,10 +66,10 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Use Node.js 20
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: 'pnpm'

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Use Node.js 20
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org/'
registry-url: 'https://registry.npmjs.org/' # important for publishing

- name: Install dependencies
run: pnpm install
Expand Down
38 changes: 21 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@project-trans/suggestion-box",
"type": "module",
"version": "0.4.3",
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"description": "Suggestion box for Project Trans",
"author": {
"name": "Project Trans Team Members",
Expand Down Expand Up @@ -54,22 +54,22 @@
"vue": "3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@iconify-json/octicon": "^1.2.0",
"@iconify-json/svg-spinners": "^1.2.0",
"@types/node": "^22.7.4",
"@unocss/eslint-plugin": "^0.63.1",
"@unocss/reset": "^0.63.1",
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^9.11.1",
"eslint-plugin-format": "^0.1.2",
"lightningcss": "^1.27.0",
"@antfu/eslint-config": "^4.3.0",
"@iconify-json/octicon": "^1.2.5",
"@iconify-json/svg-spinners": "^1.2.2",
"@types/node": "^22.13.5",
"@unocss/eslint-plugin": "^66.0.0",
"@unocss/reset": "^66.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9.21.0",
"eslint-plugin-format": "^1.0.1",
"lightningcss": "^1.29.1",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"unocss": "^0.63.1",
"vite": "^5.4.8",
"vue-tsc": "^2.1.6"
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"unocss": "^66.0.0",
"vite": "^6.1.1",
"vue-tsc": "^2.2.2"
},
"pnpm": {
"overrides": {
Expand All @@ -84,6 +84,10 @@
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.groupby": "npm:@nolyfill/object.groupby@^1",
"object.values": "npm:@nolyfill/object.values@^1"
}
},
"onlyBuiltDependencies": [
"esbuild",
"workerd"
]
}
}
Loading
Loading