Skip to content

Commit 0dc5e52

Browse files
committed
gleam.toml
1 parent d8eea4d commit 0dc5e52

File tree

4 files changed

+28
-1
lines changed

4 files changed

+28
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
build
12
target
23
node_modules

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Gleam JavaScript 🌼
22

3-
Extra code for when running on JavaScript
3+
Work with JavaScript types and values in Gleam.
44

55
## Features
66

7+
This library contains modules for working with...
8+
79
- Arrays
810
- Mutable references
911
- Promises

gleam.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name = "gleam_javascript"
2+
version = "0.1.0"
3+
licences = ["Apache-2.0"]
4+
description = "Work with JavaScript types and values in Gleam"
5+
6+
repository = { type = "github", user = "gleam-lang", repo = "javascript" }
7+
links = [
8+
{ title = "Website", href = "https://gleam.run" },
9+
{ title = "Sponsor", href = "https://github.com/sponsors/lpil" },
10+
]
11+
12+
[dependencies]
13+
gleam_stdlib = "~> 0.18"
14+
15+
[dev-dependencies]

manifest.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Gleam
2+
# You typically do not need to edit this file
3+
4+
packages = [
5+
{ name = "gleam_stdlib", version = "0.18.1", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "763ECD87D54D08755EE4C8551720D122FDCA47F61D1CA8AF23B19A90395A7468" },
6+
]
7+
8+
[requirements]
9+
gleam_stdlib = "~> 0.18"

0 commit comments

Comments
 (0)