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

Configure Feed

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

Use configured target as default when deleting docs build directory

+5 -1
+4
CHANGELOG.md
··· 483 483 - Fixed a bug where pattern matching on overlapping string prefixes with guards 484 484 could generate incorrect JavaScript. 485 485 ([John Downey](https://github.com/jtdowney)) 486 + 487 + - Fixed a bug where running `gleam docs build` on non-Erlang target projects 488 + with a warm cache would not produce the module pages. 489 + ([Matt Champagne](https://github.com/han-tyumi))
+1 -1
compiler-cli/src/docs.rs
··· 61 61 // documentation for our package. 62 62 crate::fs::delete_directory(&paths.build_directory_for_package( 63 63 Mode::Prod, 64 - options.target.unwrap_or(Target::Erlang), 64 + options.target.unwrap_or(config.target), 65 65 &config.name, 66 66 ))?; 67 67