Skip to content

Commit f57f897

Browse files
authored
chore: transfer repos to personal namespace (#311)
* chore: transfer repos to personal namespace * fix: workflows * chore: add lockfile * fix biome version * use token * fix: JSR release config * fix: badge link
1 parent c23560d commit f57f897

14 files changed

Lines changed: 2867 additions & 50 deletions

.all-contributorsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
],
106106
"contributorsPerLine": 7,
107107
"projectName": "eta",
108-
"projectOwner": "eta-dev",
108+
"projectOwner": "bgub",
109109
"repoType": "github",
110110
"repoHost": "https://github.com",
111111
"skipCi": true,

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ These steps will guide you through contributing to this project:
88
- Clone it and install dependencies
99

1010
```
11-
git clone https://github.com/eta-dev/eta
11+
git clone https://github.com/bgub/eta
1212
npm install
1313
```
1414

1515
Keep in mind that after running `npm install` the git repo is reset. So a good way to cope with this is to have a copy of the folder to push the changes, and the other to try them.
1616

1717
Make and commit your changes. Make sure the commands npm run build and npm run test:prod are working.
1818

19-
Finally send a [GitHub Pull Request](https://github.com/eta-dev/eta/compare?expand=1) with a clear list of what you've done (read more [about pull requests](https://help.github.com/articles/about-pull-requests/)). Make sure all of your commits are atomic (one feature per commit).
19+
Finally send a [GitHub Pull Request](https://github.com/bgub/eta/compare?expand=1) with a clear list of what you've done (read more [about pull requests](https://help.github.com/articles/about-pull-requests/)). Make sure all of your commits are atomic (one feature per commit).
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
name: lint-and-test
1+
name: ci
22

33
on:
44
pull_request:
55
branches: [main]
6+
push:
7+
branches: [main]
68

79
permissions:
810
contents: read
@@ -18,19 +20,19 @@ jobs:
1820
steps:
1921
- uses: actions/checkout@v4
2022

23+
- uses: pnpm/action-setup@v4
24+
with:
25+
version: 9
26+
2127
- uses: actions/setup-node@v4
2228
with:
2329
node-version: "20"
2430
cache: "pnpm"
2531

26-
- uses: pnpm/action-setup@v4
27-
with:
28-
version: 9
29-
3032
- run: pnpm install --frozen-lockfile
3133

3234
# Biome
33-
- uses: biomejs/setup-biome@v1
35+
- uses: biomejs/setup-biome@v2
3436
- run: biome ci .
3537

3638
# Build
@@ -43,7 +45,6 @@ jobs:
4345
- name: Upload coverage to Codecov
4446
uses: codecov/codecov-action@v5
4547
with:
46-
files: ./coverage/lcov.info
47-
flags: unit
48+
token: ${{ secrets.CODECOV_TOKEN }}
4849
fail_ci_if_error: true
4950
verbose: true

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21+
- uses: pnpm/action-setup@v4
22+
with:
23+
version: 9
24+
2125
- uses: actions/setup-node@v4
2226
with:
2327
node-version: "20"
2428
cache: "pnpm"
2529
registry-url: "https://registry.npmjs.org"
2630

27-
- uses: pnpm/action-setup@v4
28-
with:
29-
version: 9
30-
3131
- run: pnpm install --frozen-lockfile
3232
- run: pnpm build
3333
- run: pnpm -s vitest run -w --reporter=dot

.github/workflows/release-please.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,4 @@ jobs:
1919
steps:
2020
- uses: google-github-actions/release-please-action@v4
2121
with:
22-
release-type: node
23-
package-name: eta
24-
# Also bump jsr.json version alongside package.json:
25-
extra-files: |
26-
jsr.json
22+
config-file: release-please-config.json

.github/workflows/semantic-pr.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: semantic-pr-title
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, edited, synchronize, reopened, ready_for_review]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: read
10+
11+
jobs:
12+
check:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: amannn/action-semantic-pull-request@v5
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
with:
19+
types: |
20+
build
21+
chore
22+
ci
23+
docs
24+
feat
25+
fix
26+
perf
27+
refactor
28+
revert
29+
style
30+
test
31+
requireScope: false
32+
subjectPattern: ".+"
33+
wip: true

.github/workflows/size-limit.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
CI_JOB_NUMBER: 1
1515
steps:
1616
- uses: actions/checkout@v4
17+
- uses: pnpm/action-setup@v4
18+
with:
19+
version: 9
1720
- uses: andresz1/size-limit-action@v1.8.0
1821
with:
1922
github_token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ docs
1212

1313
dist
1414

15-
pnpm-lock.yaml
15+
package-lock.json
1616
yarn.lock

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img align="center" width="50%" src="https://github.com/eta-dev/eta/assets/25597854/041dbe34-883b-459b-8607-c787815c441a">
2+
<img align="center" width="50%" src="https://github.com/bgub/eta/assets/25597854/041dbe34-883b-459b-8607-c787815c441a">
33
</p>
44

55
<h1 align="center" style="text-align: center; width: fit-content; margin-left: auto; margin-right: auto;">eta (η)</h1>
@@ -19,17 +19,17 @@
1919

2020
<span align="center">
2121

22-
[![GitHub package.json version (main)](https://img.shields.io/github/package-json/v/eta-dev/eta/main?label=current%20version)](https://www.npmjs.com/package/eta)
23-
[![GitHub Actions Status](https://github.com/eta-dev/eta/actions/workflows/test.yml/badge.svg)](https://github.com/eta-dev/eta/actions)
22+
[![GitHub package.json version (main)](https://img.shields.io/github/package-json/v/bgub/eta/main?label=current%20version)](https://www.npmjs.com/package/eta)
23+
[![GitHub Actions Status](https://github.com/bgub/eta/actions/workflows/ci.yml/badge.svg)](https://github.com/bgub/eta/actions)
2424
[![All Contributors][logo]](#contributors-)
25-
[![Coveralls](https://img.shields.io/coveralls/eta-dev/eta.svg?branch=main)](https://coveralls.io/github/eta-dev/eta?branch=main)
25+
[![Codecov](https://codecov.io/github/bgub/eta/branch/main/graph/badge.svg)](https://codecov.io/github/bgub/eta)
2626
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg)](https://paypal.me/bengubler)
2727

2828
</span>
2929

3030
<span align="center">
3131

32-
**You're viewing the source for Eta v3, which we just released! For v2, visit [the old branch](https://github.com/eta-dev/eta/tree/v2).**
32+
**You're viewing the source for Eta v3, which we just released! For v2, visit [the old branch](https://github.com/bgub/eta/tree/v2).**
3333

3434
</span>
3535

@@ -170,7 +170,7 @@ To render Eta templates in [Koa](https://koajs.com) web framework: [@cedx/koa-et
170170
- [html-bundler-webpack-plugin](https://github.com/webdiscus/html-bundler-webpack-plugin): Webpack plugin make easily to bundle HTML pages from templates, source styles and scripts
171171
- [SmartDeno](https://github.com/guildenstern70/SmartDeno): SmartDeno is an easy to setup web template using Deno & Oak
172172
- [stc](https://github.com/long-woo/stc): OpenAPI (Swagger) and Apifox documentation converted to api. Use eta templates to generate code.
173-
- [Add yours!](https://github.com/eta-dev/eta/edit/master/README.md)
173+
- [Add yours!](https://github.com/bgub/eta/edit/master/README.md)
174174

175175
## Contributors
176176

@@ -182,18 +182,18 @@ Made with ❤️ by [bgub](https://github.com/bgub) and all these wonderful cont
182182
<table>
183183
<tbody>
184184
<tr>
185-
<td align="center" valign="top" width="14.28%"><a href="http://www.bengubler.com"><img src="https://avatars3.githubusercontent.com/u/25597854?v=4?s=100" width="100px;" alt="Ben Gubler"/><br /><sub><b>Ben Gubler</b></sub></a><br /><a href="https://github.com/eta-dev/eta/commits?author=nebrelbug" title="Code">💻</a> <a href="#question-nebrelbug" title="Answering Questions">💬</a> <a href="https://github.com/eta-dev/eta/commits?author=nebrelbug" title="Documentation">📖</a> <a href="https://github.com/eta-dev/eta/commits?author=nebrelbug" title="Tests">⚠️</a></td>
186-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clitetailor"><img src="https://avatars1.githubusercontent.com/u/16368559?v=4?s=100" width="100px;" alt="Clite Tailor"/><br /><sub><b>Clite Tailor</b></sub></a><br /><a href="#ideas-clitetailor" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/eta-dev/eta/commits?author=clitetailor" title="Code">💻</a></td>
187-
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/ioan_chiriac"><img src="https://avatars2.githubusercontent.com/u/173203?v=4?s=100" width="100px;" alt="Ioan CHIRIAC"/><br /><sub><b>Ioan CHIRIAC</b></sub></a><br /><a href="https://github.com/eta-dev/eta/commits?author=ichiriac" title="Code">💻</a> <a href="#ideas-ichiriac" title="Ideas, Planning, & Feedback">🤔</a></td>
188-
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/craig-morten/"><img src="https://avatars1.githubusercontent.com/u/46491566?v=4?s=100" width="100px;" alt="Craig Morten"/><br /><sub><b>Craig Morten</b></sub></a><br /><a href="https://github.com/eta-dev/eta/commits?author=asos-craigmorten" title="Code">💻</a></td>
185+
<td align="center" valign="top" width="14.28%"><a href="http://www.bengubler.com"><img src="https://avatars3.githubusercontent.com/u/25597854?v=4?s=100" width="100px;" alt="Ben Gubler"/><br /><sub><b>Ben Gubler</b></sub></a><br /><a href="https://github.com/bgub/eta/commits?author=nebrelbug" title="Code">💻</a> <a href="#question-nebrelbug" title="Answering Questions">💬</a> <a href="https://github.com/bgub/eta/commits?author=nebrelbug" title="Documentation">📖</a> <a href="https://github.com/bgub/eta/commits?author=nebrelbug" title="Tests">⚠️</a></td>
186+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/clitetailor"><img src="https://avatars1.githubusercontent.com/u/16368559?v=4?s=100" width="100px;" alt="Clite Tailor"/><br /><sub><b>Clite Tailor</b></sub></a><br /><a href="#ideas-clitetailor" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/bgub/eta/commits?author=clitetailor" title="Code">💻</a></td>
187+
<td align="center" valign="top" width="14.28%"><a href="https://twitter.com/ioan_chiriac"><img src="https://avatars2.githubusercontent.com/u/173203?v=4?s=100" width="100px;" alt="Ioan CHIRIAC"/><br /><sub><b>Ioan CHIRIAC</b></sub></a><br /><a href="https://github.com/bgub/eta/commits?author=ichiriac" title="Code">💻</a> <a href="#ideas-ichiriac" title="Ideas, Planning, & Feedback">🤔</a></td>
188+
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/craig-morten/"><img src="https://avatars1.githubusercontent.com/u/46491566?v=4?s=100" width="100px;" alt="Craig Morten"/><br /><sub><b>Craig Morten</b></sub></a><br /><a href="https://github.com/bgub/eta/commits?author=asos-craigmorten" title="Code">💻</a></td>
189189
<td align="center" valign="top" width="14.28%"><a href="https://github.com/trojanh"><img src="https://avatars0.githubusercontent.com/u/22974490?v=4?s=100" width="100px;" alt="Rajan Tiwari"/><br /><sub><b>Rajan Tiwari</b></sub></a><br /><a href="#example-trojanh" title="Examples">💡</a></td>
190-
<td align="center" valign="top" width="14.28%"><a href="https://shadowtime2000.github.io"><img src="https://avatars1.githubusercontent.com/u/66655515?v=4?s=100" width="100px;" alt="shadowtime2000"/><br /><sub><b>shadowtime2000</b></sub></a><br /><a href="https://github.com/eta-dev/eta/commits?author=shadowtime2000" title="Code">💻</a> <a href="#ideas-shadowtime2000" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/eta-dev/eta/commits?author=shadowtime2000" title="Tests">⚠️</a></td>
191-
<td align="center" valign="top" width="14.28%"><a href="https://hamidihamza.com"><img src="https://avatars0.githubusercontent.com/u/22576950?v=4?s=100" width="100px;" alt="Hamza Hamidi"/><br /><sub><b>Hamza Hamidi</b></sub></a><br /><a href="https://github.com/eta-dev/eta/commits?author=hamzahamidi" title="Documentation">📖</a></td>
190+
<td align="center" valign="top" width="14.28%"><a href="https://shadowtime2000.github.io"><img src="https://avatars1.githubusercontent.com/u/66655515?v=4?s=100" width="100px;" alt="shadowtime2000"/><br /><sub><b>shadowtime2000</b></sub></a><br /><a href="https://github.com/bgub/eta/commits?author=shadowtime2000" title="Code">💻</a> <a href="#ideas-shadowtime2000" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/bgub/eta/commits?author=shadowtime2000" title="Tests">⚠️</a></td>
191+
<td align="center" valign="top" width="14.28%"><a href="https://hamidihamza.com"><img src="https://avatars0.githubusercontent.com/u/22576950?v=4?s=100" width="100px;" alt="Hamza Hamidi"/><br /><sub><b>Hamza Hamidi</b></sub></a><br /><a href="https://github.com/bgub/eta/commits?author=hamzahamidi" title="Documentation">📖</a></td>
192192
</tr>
193193
<tr>
194194
<td align="center" valign="top" width="14.28%"><a href="http://calumk.com"><img src="https://avatars1.githubusercontent.com/u/1183991?v=4?s=100" width="100px;" alt="Calum Knott"/><br /><sub><b>Calum Knott</b></sub></a><br /><a href="#ideas-calumk" title="Ideas, Planning, & Feedback">🤔</a></td>
195-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nhaef"><img src="https://avatars.githubusercontent.com/u/16443053?v=4?s=100" width="100px;" alt="nhaef"/><br /><sub><b>nhaef</b></sub></a><br /><a href="https://github.com/eta-dev/eta/commits?author=nhaef" title="Code">💻</a></td>
196-
<td align="center" valign="top" width="14.28%"><a href="http://heyhey.to/Gün"><img src="https://avatars.githubusercontent.com/u/74139498?v=4?s=100" width="100px;" alt="Gün"/><br /><sub><b>Gün</b></sub></a><br /><a href="https://github.com/eta-dev/eta/commits?author=gurgunday" title="Code">💻</a></td>
195+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nhaef"><img src="https://avatars.githubusercontent.com/u/16443053?v=4?s=100" width="100px;" alt="nhaef"/><br /><sub><b>nhaef</b></sub></a><br /><a href="https://github.com/bgub/eta/commits?author=nhaef" title="Code">💻</a></td>
196+
<td align="center" valign="top" width="14.28%"><a href="http://heyhey.to/Gün"><img src="https://avatars.githubusercontent.com/u/74139498?v=4?s=100" width="100px;" alt="Gün"/><br /><sub><b>Gün</b></sub></a><br /><a href="https://github.com/bgub/eta/commits?author=gurgunday" title="Code">💻</a></td>
197197
</tr>
198198
</tbody>
199199
</table>

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@eta-dev/eta",
2+
"name": "@bgub/eta",
33
"version": "3.5.0",
44
"exports": "./src/index.ts",
55
"publish": {

0 commit comments

Comments
 (0)