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

Configure Feed

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

Use consistent spelling

+5 -5
+1 -1
changelog/v1.1.md
··· 1358 1358 - `true` and `false` can no longer be used as pattern matching variables, to 1359 1359 avoid accidental uses of incorrect syntax that is popular in other languages. 1360 1360 An error will hint about using Gleam's `True` and `False` values instead. 1361 - - You can now remove build artifacts using the new `gleam clean` command. 1361 + - You can now remove build artefacts using the new `gleam clean` command. 1362 1362 - The `compile-package` can now generate `package.app` files and compile source 1363 1363 modules to `.beam` bytecode files. 1364 1364 - The flags that `compile-package` accepts have changed.
+1 -1
compiler-cli/src/lib.rs
··· 420 420 packages: Vec<String>, 421 421 }, 422 422 423 - /// Delete any build artifacts for this project 423 + /// Delete any build artefacts for this project 424 424 Clean, 425 425 426 426 /// Run the language server, to be used by editors
+1 -1
compiler-core/src/paths.rs
··· 136 136 } 137 137 138 138 /// A path to a special file that contains the version of gleam 139 - /// that last built the artifacts along with build-impacting 139 + /// that last built the artefacts along with build-impacting 140 140 /// configuration, such as whether to generate source maps. If 141 141 /// this file does not match the current version of gleam we 142 142 /// will rebuild from scratch
+1 -1
compiler-core/src/version.rs
··· 2 2 // SPDX-FileCopyrightText: 2022 The Gleam contributors 3 3 4 4 /// The current version of the gleam compiler. If this does not match what is 5 - /// already in the build folder we will not reuse any cached artifacts and 5 + /// already in the build folder we will not reuse any cached artefacts and 6 6 /// instead build from scratch 7 7 pub const COMPILER_VERSION: &str = env!("CARGO_PKG_VERSION");
+1 -1
docs/threat-model.md
··· 136 136 A bad actor could attempt to cause a malicious or modified binary to be 137 137 published to GitHub Releases, or replace release assets after build. 138 138 139 - - The release workflow uses GitHub OIDC and artifact attestations to produce 139 + - The release workflow uses GitHub OIDC and artefact attestations to produce 140 140 provenance for release assets, published alongside release archives as 141 141 `.sigstore` files. 142 142 - Checksums are provided for release archives for users' integrity checking.