Skip to content

Commit 3b315b3

Browse files
committed
🌱 Initialize!!
0 parents  commit 3b315b3

File tree

12 files changed

+4070
-0
lines changed

12 files changed

+4070
-0
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: erlef/setup-beam@v1
11+
with:
12+
otp-version: "26.0.2"
13+
gleam-version: "1.1.0"
14+
rebar3-version: "3"
15+
# elixir-version: "1.15.4"
16+
- run: gleam deps download
17+
- run: gleam test
18+
- run: gleam format --check src test

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.beam
2+
*.ez
3+
/build
4+
erl_crash.dump
5+
6+
# swapfile
7+
*.swp

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2024 Comamoca
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<div align="center">
2+
3+
![Last commit](https://img.shields.io/github/last-commit/Comamoca/garnet?style=flat-square)
4+
![Repository Stars](https://img.shields.io/github/stars/Comamoca/garnet?style=flat-square)
5+
![Issues](https://img.shields.io/github/issues/Comamoca/garnet?style=flat-square)
6+
![Open Issues](https://img.shields.io/github/issues-raw/Comamoca/garnet?style=flat-square)
7+
![Bug Issues](https://img.shields.io/github/issues/Comamoca/garnet/bug?style=flat-square)
8+
9+
<img src="https://emoji2svg.deno.dev/api/🦊" alt="eyecatch" height="100">
10+
11+
# garnet
12+
13+
Compile gleam to single binary, via Deno and Bun.
14+
15+
<br>
16+
<br>
17+
18+
19+
</div>
20+
21+
[![Package Version](https://img.shields.io/hexpm/v/garnet)](https://hex.pm/packages/garnet)
22+
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/garnet/)
23+
24+
<div align="center">
25+
26+
</div>
27+
28+
## 🚀 How to use
29+
30+
```sh
31+
gleam run -m garnet_tool example out bun
32+
```
33+
34+
## ⬇️ Install
35+
36+
```sh
37+
gleam add -m garnet_tool
38+
```
39+
40+
## ⛏️ Development
41+
42+
```sh
43+
gleam run -m garnet_tool
44+
```
45+
46+
## 📝 Todo
47+
48+
Notting...
49+
50+
## 📜 License
51+
52+
MIT
53+
54+
### 🧩 Modules
55+
56+
- [gleam_javascript](https://hexdocs.pm/gleam_javascript) Apache-2.0
57+
- [glearray](https://hexdocs.pm/glearray) Apache-2.0
58+
- [gleam_fetch](https://hexdocs.pm/gleam_fetch) Apache-2.0
59+
- [glance](https://hexdocs.pm/glance) Apache-2.0
60+
- [shellout](https://hexdocs.pm/shellout) Apache-2.0
61+
- [fswalk](https://hexdocs.pm/fswalk) MIT
62+
- [cleam](https://hexdocs.pm/cleam) MIT
63+
- [gleeunit](https://hexdocs.pm/gleeunit) Apache-2.0
64+
- [gleam_json](https://hexdocs.pm/gleam_json) Apache-2.0
65+
- [gleam_erlang](https://hexdocs.pm/gleam_erlang) Apache-2.0
66+
- [gleam_community_ansi](https://hexdocs.pm/gleam_community_ansi) Apache-2.0
67+
- [repeatedly](https://hexdocs.pm/repeatedly) Apache-2.0
68+
- [pears](https://hexdocs.pm/pears) MIT
69+
- [simplifile](https://hexdocs.pm/simplifile) Apache-2.0
70+
- [esgleam](https://hexdocs.pm/esgleam) Apache-2.0
71+
- [gleam_community_colour](https://hexdocs.pm/gleam_community_colour) Apache-2.0
72+
- [gleam_http](https://hexdocs.pm/gleam_http) Apache-2.0
73+
- [jasper](https://hexdocs.pm/jasper) AGPL-3.0-only
74+
- [gleam_stdlib](https://hexdocs.pm/gleam_stdlib) Apache-2.0
75+
- [glexer](https://hexdocs.pm/glexer) MIT
76+
- [thoas](https://hexdocs.pm/thoas) Apache 2.0
77+
- [argv](https://hexdocs.pm/argv) Apache-2.0
78+
- [filepath](https://hexdocs.pm/filepath) Apache-2.0
79+
- [spinner](https://hexdocs.pm/spinner) Apache-2.0
80+
- [gleam_community_path](https://hexdocs.pm/gleam_community_path) Apache-2.0
81+
82+
## 💕 Special Thanks
83+
84+
- [Gleam](https://gleam.run/)
85+
- [Deno](https://deno.com/)
86+
- [Bun](https://bun.sh/)

0 commit comments

Comments
 (0)