Skip to content

Commit 8c46fdc

Browse files
authored
Merge pull request #5 from CoderSerio/feat/carbon-dev
Feat/carbon dev
2 parents f4855d2 + 143dfeb commit 8c46fdc

Some content is hidden

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

77 files changed

+12910
-183
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Feature Request / Bug Fix
3+
about: Common template for pr and bugfix
4+
title: '[FEAT/BUG]'
5+
---
6+
7+
## Type of Change
8+
9+
- [ ] 🚀 New feature (non-breaking change which adds functionality)
10+
- [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
11+
- [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
- [ ] ⚡ Performance improvement
13+
- [ ] 📝 Documentation update
14+
- [ ] 🔧 Refactoring (no functional changes, no api changes)
15+
- [ ] 🧪 Tests
16+
17+
## Description
18+
19+
[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.]
20+
21+
## Environment
22+
23+
- **OS:** [e.g. macOS, Windows, Linux]
24+
- **Node.js Version:** [e.g. v18.16.0]
25+
- **hyper-fs Version:** [e.g. 0.0.1]
26+
27+
## Related Issues:
28+
29+
[List the issue numbers related to this issue, e.g. #123]
30+
31+
## Benchmarks
32+
33+
_(Benchmarks show that...)_
34+
35+
## Checklist
36+
37+
- [ ] I have searched existing issues to ensure this is not a duplicate
38+
- [ ] I have provided a minimal reproduction (for bugs)
39+
- [ ] I have run `pnpm test` and passed all the test sample

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
- name: Install dependencies
153153
run: pnpm install
154154
- name: Download artifacts
155-
uses: actions/download-artifact@v6
155+
uses: actions/download-artifact@v4
156156
with:
157157
name: bindings-${{ matrix.settings.target }}
158158
path: .
@@ -208,7 +208,7 @@ jobs:
208208
pnpm config set supportedArchitectures.libc "[\"current\", \"musl\", \"gnu\"]" --json
209209
pnpm install
210210
- name: Download artifacts
211-
uses: actions/download-artifact@v6
211+
uses: actions/download-artifact@v4
212212
with:
213213
name: bindings-${{ matrix.target }}
214214
path: .
@@ -252,7 +252,7 @@ jobs:
252252
- name: create npm dirs
253253
run: pnpm napi create-npm-dirs
254254
- name: Download all artifacts
255-
uses: actions/download-artifact@v4 # v4 is standard, v6 is user specific maybe? keeping consistent with other edits
255+
uses: actions/download-artifact@v4
256256
with:
257257
path: artifacts
258258
- name: Move artifacts

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,11 @@ Cargo.lock
127127
!.yarn/releases
128128
!.yarn/sdks
129129
!.yarn/versions
130-
/npm
130+
/npm
131+
132+
133+
# vibe coding 🤓
134+
.cursor/
135+
136+
# 本地开发备忘,不进入版本控制
137+
TODO.md

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
pnpm lint-staged

0 commit comments

Comments
 (0)