Fork of daniellemaywood.uk/gleam — Wasm codegen work
1

Configure Feed

Select the types of activity you want to include in your feed.

Update relevant documentation

author
Gears
committer
Louis Pilfold
date (Mar 17, 2026, 4:02 PM UTC) commit c434ac55 parent f9146a27 change-id oostomqz
+1 -17
-3
.gitattributes
··· 1 1 [attr]generated linguist-generated=true diff=generated 2 2 3 - # Generate Cap'n Proto code 4 - compiler-core/generated/schema_capnp.rs generated 5 - 6 3 # Tests: 7 4 test-package-compiler/src/generated_tests.rs generated 8 5
-13
CONTRIBUTING.md
··· 98 98 rustup upgrade stable 99 99 ``` 100 100 101 - ## Cap'n Proto schema 102 - 103 - The compiler uses a Cap'n Proto schema to serialize/deserialize module information. 104 - Occasionally, the schema needs to change. After modifying `compiler-core/schema.capnp` 105 - you need to re-generate `compiler-core/generated/schema_capnp.rs`. To do that, 106 - [install Cap'n Proto](https://capnproto.org/install.html) and un-comment appropriate lines 107 - in `compiler-core/build.rs`. Then you should be able to re-generate that file with: 108 - 109 - ```sh 110 - cd compiler-core 111 - cargo build 112 - ``` 113 - 114 101 ## Operating system specific code 115 102 116 103 This project is used on FreeBSD, Linux, MacOS, OpenBSD, Windows, and presumably
+1 -1
Makefile
··· 53 53 54 54 .PHONY: test-watch 55 55 test-watch: ## Run compiler tests when files change 56 - watchexec -e rs,toml,gleam,html,capnp "cargo test --quiet" 56 + watchexec -e rs,toml,gleam,html "cargo test --quiet" 57 57 58 58 .PHONY: export-hex-tarball-test 59 59 export-hex-tarball-test: ## Run `gleam export hex-tarball` and verify it is created