Skip to content
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
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: Feature Request / Bug Fix
about: Common template for pr and bugfix
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟑 Minor

Fix inconsistent capitalization and phrasing in the front matter.

The about field uses inconsistent capitalization and abbreviated terms. Standardize to match the title field format.

Apply this diff:

-about: Common template for pr and bugfix
+about: Common template for feature requests and bug fixes
πŸ“ Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
about: Common template for pr and bugfix
about: Common template for feature requests and bug fixes
πŸ€– Prompt for AI Agents
.github/ISSUE_TEMPLATE.md around line 3: the front-matter key "about" uses
lowercase and an abbreviated term; update it to match title-style capitalization
and wording (e.g., "About: Common template for PR and Bugfix") so the front
matter is consistently capitalized and phrased like the title.

title: '[FEAT/BUG]'
---

## Type of Change

- [ ] πŸš€ New feature (non-breaking change which adds functionality)
- [ ] πŸ› Bug fix (non-breaking change which fixes an issue)
- [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] ⚑ Performance improvement
- [ ] πŸ“ Documentation update
- [ ] πŸ”§ Refactoring (no functional changes, no api changes)
- [ ] πŸ§ͺ Tests

## Description

[Please describe the background, possible causes, how to reproduce the issue (code snippets or repo links are appreciated), and any necessary solutions. For feature requests, explain the motivation and use case.]

## Environment

- **OS:** [e.g. macOS, Windows, Linux]
- **Node.js Version:** [e.g. v18.16.0]
- **hyper-fs Version:** [e.g. 0.0.1]

## Related Issues:

[List the issue numbers related to this issue, e.g. #123]

## Benchmarks

_(Benchmarks show that...)_

## Checklist

- [ ] I have searched existing issues to ensure this is not a duplicate
- [ ] I have provided a minimal reproduction (for bugs)
- [ ] I have run `pnpm test` and passed all the test sample
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v4
with:
name: bindings-${{ matrix.settings.target }}
path: .
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
pnpm config set supportedArchitectures.libc "[\"current\", \"musl\", \"gnu\"]" --json
pnpm install
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v4
with:
name: bindings-${{ matrix.target }}
path: .
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
- name: create npm dirs
run: pnpm napi create-npm-dirs
- name: Download all artifacts
uses: actions/download-artifact@v4 # v4 is standard, v6 is user specific maybe? keeping consistent with other edits
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Move artifacts
Expand Down
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,11 @@ Cargo.lock
!.yarn/releases
!.yarn/sdks
!.yarn/versions
/npm
/npm


# vibe coding πŸ€“
.cursor/

# ζœ¬εœ°εΌ€ε‘ε€‡εΏ˜οΌŒδΈθΏ›ε…₯η‰ˆζœ¬ζŽ§εˆΆ
TODO.md
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

pnpm lint-staged
Loading
Loading