├── .gitignore ├── .prettierrc ├── .yarn └── install-state.gz ├── .yarnrc.yml ├── LICENCE ├── README.md ├── bin └── cli.mjs ├── package.json ├── src ├── environment.mjs ├── environment │ └── cachedir.mjs ├── gleam.mjs ├── gleam │ └── compiler.mjs ├── installer.mjs └── main.mjs └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/bin/cli.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/package.json -------------------------------------------------------------------------------- /src/environment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/src/environment.mjs -------------------------------------------------------------------------------- /src/environment/cachedir.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/src/environment/cachedir.mjs -------------------------------------------------------------------------------- /src/gleam.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/src/gleam.mjs -------------------------------------------------------------------------------- /src/gleam/compiler.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/src/gleam/compiler.mjs -------------------------------------------------------------------------------- /src/installer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/src/installer.mjs -------------------------------------------------------------------------------- /src/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/src/main.mjs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghivert/gleam-lang-npm/HEAD/yarn.lock --------------------------------------------------------------------------------