Faris Mustafa
Faris Mustafa
```json { "development": { "build": { "uglify": false } }, "production": { "build": { "uglify": true } } } ```
My requirejs config looks as such: ``` requirejs.config({ urlArgs: 'v=' + (new Date().getTime()) }); ``` However, when I run bower-requirejs I end up with a config that has an evaluated...
```bf using System; using System.Collections; namespace TryBeef; class Program { public static void Main(String[] args) { void Fn(T a) where T : IEnumerable { Console.WriteLine("{}", a.GetEnumerator()); } Console.WriteLine("{}", int[]().GetEnumerator()); Fn(int[](1,2,3));...
```bf using System; namespace TryBeef; class Program { public static void Main(String[] args) { void Fn(float? a) { let b = (double?)a; // crashes IDE when compiling } float? a...
``` using System; namespace TryBeef; class Program { public static void Main(String[] args) { void fn(int? a) { Console.WriteLine("int"); } void fn(float a) { Console.WriteLine("float"); } void fn(String a) {...
This PR upgrades the `mint docs generate` command with static HTML generation. I tried to model the generators after the existing json generators. At first I couldn't decide if I...
It does not appear that global components are mounted during tests, this would be a great feature to have. ```mint global component Modal { fun method { true } fun...
Not sure if this is VSCode specific or just a general LS thing, but for me on VSCode I don't see any outline view
A gif maybe the best way to show what's going on here.  
In Mint, to pass a bunch of property variables to a component, you have to list out the key/value for each one. ``` component Main { fun render : Html...