Paul Butcher
Paul Butcher
What is the intended format for `androidPlatformName`? https://github.com/n8han/android-app.g8 defines it to be `android-$api_level$` (i.e. something like `android-7`). And this makes sense given that: ``` androidPlatformPath = androidSdkPath / "platforms" /...
If I create a new project with `lein new figwheel-main` then `lein fig:test` fails consistently with `Error: Cannot find module '@cljs-oss/module-deps'`. This might be related to #21, which I note...
Enabling auto-bundling with `webpack-cli` 4.3.0 results in the following error: ``` [Figwheel:SEVERE] Bundling command failed [webpack-cli] Running multiple commands at the same time is not possible [webpack-cli] Found commands: 'bundle',...
This PR is draft because definitely not yet complete. But I need some advice as to how to proceed from here. I've plumbed the return type through the AST to...
Auto complete can currently return hundreds of possible completions. For example typing "m" will match enums such as `Map`, defs such as `File.mkdir`, type classes such as `Mod`, keywords like...
`Int32.fromString` (and other numeric types) returns `Result`, whereas `FromString.fromString` returns `Option`.
In general preceding a name with an underscore marks the definition as unused. But this only works with uppercase and lowercase names. Flix also supports greek, math, and operator names,...
As discussed on Gitter. I've added `/`, `:`, and `.` to the characters allowed in user operators. Created as draft because I had to make one, very minor, change to...
`import` checks that parameter types are correct, but doesn't check the return type, leading to subsequent issues. For example, the following compiles: ``` import java.util.ArrayList; import java.lang.Object; import java.util.AbstractCollection; //...
See below some thoughts on what we might want from an expanded project and dependency management solution. This is intended to be a starting point for discussion only, so please...