Sam Gammon
Sam Gammon
- Need to install `musl` toolchain and wire together env vars - Need to install `protoc` - `sudo apt install gcc make gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu` for cross compiling to aarch64 -...
Going to keep a log of issues that new contributors run into, so that we can knock them out and add better documentation: - [ ] [GraalVM toolchains fix](https://gist.github.com/sgammon/f8903b93c50ee019fe36061436a1e43d) -...
It would be good to ice IDEA configurations into project Gradle configs. Namely: - Pointing directly at GraalVM instead of detecting JDKs - Testing / run profiles - Coverage configurations
It would be great to have a CLI tool which could help with debugging, app maintenance/lifecycle tasks, locally running apps, and so on. These are just some initial thoughts. **Cool...
### Issue description Currently, Elide's release process is rather cumbersome. We should automate it and ideally we should be able to perform it entirely from GitHub Actions or other hermetic...
The following performance enhancements are imagined or planned (modulo testing to validate): - [x] **Concurrent JS execution.** Currently, the JS VM operates in a single thread. We should make it...
It would be great to have native built-in support for secret value resolution.
``` val assetDist by configurations.creating { isCanBeConsumed = true isCanBeResolved = false } artifacts { add(assetDist.name, tasks.named("browserDistribution").map { it.outputs.files.files.single() }) } ``` should be configured automatically by the Gradle plugin
For now, Elide _uses_ Kotlin Multiplatform, but doesn't _support_ multiplatform targets when using the plugin. This is an inconsistency which will inevitably bite users in a painful way; if they...