-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgleam.toml
46 lines (38 loc) · 866 Bytes
/
gleam.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name = "argamak"
version = "1.1.0"
description = "A tensor library for the Gleam programming language"
licences = ["Apache-2.0"]
gleam = ">= 0.34.0"
[repository]
repo = "argamak"
user = "tynanbe"
type = "github"
[[links]]
href = "https://gleam.run/"
title = "Website"
[dependencies]
gleam_stdlib = "~> 0.34 or ~> 1.0"
nx = "~> 0.5 or ~> 1.0"
[dev-dependencies]
gleeunit = "~> 1.0"
rad = "~> 1.1"
[rad]
targets = ["erlang", "javascript"]
[[rad.formatters]]
name = "elixir"
check = ["sh", "-euc", """
mix format --check-formatted
echo -n 'Checked all files in `src` and `test`'
"""]
run = ["sh", "-euc", """
mix format
echo -n 'Formatted all files in `src` and `test`'
"""]
[[rad.formatters]]
name = "javascript"
check = ["deno", "fmt", "--check"]
run = ["deno", "fmt"]
[[rad.tasks]]
path = ["init"]
run = ["npm", "ci"]
shortdoc = "Initialize argamak"