From 0dc5e5234e14d915d61c75c36ddeae9e317bdd3c Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Fri, 7 Jan 2022 19:15:02 +0000 Subject: gleam.toml --- .gitignore | 1 + README.md | 4 +++- gleam.toml | 15 +++++++++++++++ manifest.toml | 9 +++++++++ 4 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 gleam.toml create mode 100644 manifest.toml diff --git a/.gitignore b/.gitignore index aec67d3..f68ef88 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +build target node_modules diff --git a/README.md b/README.md index bdd1887..68b91d2 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ # Gleam JavaScript 🌼 -Extra code for when running on JavaScript +Work with JavaScript types and values in Gleam. ## Features +This library contains modules for working with... + - Arrays - Mutable references - Promises diff --git a/gleam.toml b/gleam.toml new file mode 100644 index 0000000..50955b6 --- /dev/null +++ b/gleam.toml @@ -0,0 +1,15 @@ +name = "gleam_javascript" +version = "0.1.0" +licences = ["Apache-2.0"] +description = "Work with JavaScript types and values in Gleam" + +repository = { type = "github", user = "gleam-lang", repo = "javascript" } +links = [ + { title = "Website", href = "https://gleam.run" }, + { title = "Sponsor", href = "https://github.com/sponsors/lpil" }, +] + +[dependencies] +gleam_stdlib = "~> 0.18" + +[dev-dependencies] diff --git a/manifest.toml b/manifest.toml new file mode 100644 index 0000000..017fbe5 --- /dev/null +++ b/manifest.toml @@ -0,0 +1,9 @@ +# This file was generated by Gleam +# You typically do not need to edit this file + +packages = [ + { name = "gleam_stdlib", version = "0.18.1", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "763ECD87D54D08755EE4C8551720D122FDCA47F61D1CA8AF23B19A90395A7468" }, +] + +[requirements] +gleam_stdlib = "~> 0.18" -- cgit v1.2.3